mirror of
https://github.com/opelly27/streetmerchant.git
synced 2026-05-20 02:57:34 +00:00
24 lines
410 B
TypeScript
24 lines
410 B
TypeScript
import {Store} from './store';
|
|
|
|
export const Asus: Store = {
|
|
labels: {
|
|
outOfStock: ['coming soon', 'temporarily sold out']
|
|
},
|
|
links: [
|
|
{
|
|
brand: 'asus',
|
|
model: 'tuf oc',
|
|
series: '3080',
|
|
url: 'https://store.asus.com/us/item/202009AM160000001/'
|
|
},
|
|
{
|
|
brand: 'asus',
|
|
model: 'tuf',
|
|
series: '3080',
|
|
url: 'https://store.asus.com/us/item/202009AM150000004/'
|
|
}
|
|
],
|
|
name: 'asus'
|
|
};
|
|
|