Files
streetmerchant/src/store/model/evga-eu.ts
T
2020-12-12 09:01:54 -05:00

75 lines
1.5 KiB
TypeScript

import {Store} from './store';
export const EvgaEu: Store = {
currency: '€',
labels: {
inStock: {
container: '.product-buy-specs',
text: ['add to cart']
}
},
links: [
{
brand: 'evga',
model: 'ftw3',
series: '3080',
url: 'https://eu.evga.com/products/product.aspx?pn=10G-P5-3895-KR'
},
{
brand: 'evga',
model: 'ftw3 ultra',
series: '3080',
url: 'https://eu.evga.com/products/product.aspx?pn=10G-P5-3897-KR'
},
{
brand: 'evga',
model: 'xc3',
series: '3080',
url: 'https://eu.evga.com/products/product.aspx?pn=10G-P5-3883-KR'
},
{
brand: 'evga',
model: 'xc3 black',
series: '3080',
url: 'https://eu.evga.com/products/product.aspx?pn=10G-P5-3881-KR'
},
{
brand: 'evga',
model: 'xc3 ultra',
series: '3080',
url: 'https://eu.evga.com/products/product.aspx?pn=10G-P5-3885-KR'
},
{
brand: 'evga',
model: 'ftw3',
series: '3090',
url: 'https://eu.evga.com/products/product.aspx?pn=24G-P5-3985-KR'
},
{
brand: 'evga',
model: 'ftw3 ultra',
series: '3090',
url: 'https://eu.evga.com/products/product.aspx?pn=24G-P5-3987-KR'
},
{
brand: 'evga',
model: 'xc3',
series: '3090',
url: 'https://eu.evga.com/products/product.aspx?pn=24G-P5-3973-KR'
},
{
brand: 'evga',
model: 'xc3 black',
series: '3090',
url: 'https://eu.evga.com/products/product.aspx?pn=24G-P5-3971-KR'
},
{
brand: 'evga',
model: 'xc3 ultra',
series: '3090',
url: 'https://eu.evga.com/products/product.aspx?pn=24G-P5-3975-KR'
}
],
name: 'evga-eu'
};