Files
streetmerchant/src/store/model/evga.ts
T
2020-12-25 19:24:04 -05:00

123 lines
2.7 KiB
TypeScript

import {Store} from './store';
export const Evga: Store = {
currency: '$',
labels: {
inStock: {
container: '.product-buy-specs',
text: ['add to cart']
}
},
links: [
{
brand: 'test:brand',
model: 'test:model',
series: 'test:series',
url: 'https://www.evga.com/products/product.aspx?pn=06G-P4-2065-KR'
},
{
brand: 'evga',
model: 'xc gaming',
series: '3060ti',
url: 'https://www.evga.com/products/product.aspx?pn=08G-P5-3663-KR'
},
{
brand: 'evga',
model: 'ftw3',
series: '3060ti',
url: 'https://www.evga.com/products/product.aspx?pn=08G-P5-3665-KR'
},
{
brand: 'evga',
model: 'ftw3 ultra',
series: '3060ti',
url: 'https://www.evga.com/products/product.aspx?pn=08G-P5-3667-KR'
},
{
brand: 'evga',
model: 'xc3 black',
series: '3070',
url: 'https://www.evga.com/products/product.aspx?pn=08G-P5-3751-KR'
},
{
brand: 'evga',
model: 'xc3 ultra',
series: '3070',
url: 'https://www.evga.com/products/product.aspx?pn=08G-P5-3755-KR'
},
{
brand: 'evga',
model: 'ftw3 ultra',
series: '3070',
url: 'https://www.evga.com/products/product.aspx?pn=08G-P5-3767-KR'
},
{
brand: 'evga',
model: 'xc3 black',
series: '3080',
url: 'https://www.evga.com/products/product.aspx?pn=10G-P5-3881-KR'
},
{
brand: 'evga',
model: 'ftw3 ultra',
series: '3080',
url: 'https://www.evga.com/products/product.aspx?pn=10G-P5-3897-KR'
},
{
brand: 'evga',
model: 'ftw3 ultra hydro copper',
series: '3080',
url: 'https://www.evga.com/products/product.aspx?pn=10G-P5-3897-KR'
},
{
brand: 'evga',
model: 'ftw3',
series: '3080',
url: 'https://www.evga.com/products/product.aspx?pn=10G-P5-3895-KR'
},
{
brand: 'evga',
model: 'xc3',
series: '3080',
url: 'https://www.evga.com/products/product.aspx?pn=10G-P5-3883-KR'
},
{
brand: 'evga',
model: 'xc3 ultra',
series: '3080',
url: 'https://www.evga.com/products/product.aspx?pn=10G-P5-3885-KR'
},
{
brand: 'evga',
model: 'xc3 black',
series: '3090',
url: 'https://www.evga.com/products/product.aspx?pn=24G-P5-3971-KR'
},
{
brand: 'evga',
model: 'ftw3 ultra',
series: '3090',
url: 'https://www.evga.com/products/product.aspx?pn=24G-P5-3987-KR'
},
{
brand: 'evga',
model: 'ftw3',
series: '3090',
url: 'https://www.evga.com/products/product.aspx?pn=24G-P5-3985-KR'
},
{
brand: 'evga',
model: 'xc3',
series: '3090',
url: 'https://www.evga.com/products/product.aspx?pn=24G-P5-3973-KR'
},
{
brand: 'evga',
model: 'xc3 ultra',
series: '3090',
url: 'https://www.evga.com/products/product.aspx?pn=24G-P5-3975-KR'
}
],
name: 'evga'
};