mirror of
https://github.com/opelly27/streetmerchant.git
synced 2026-05-20 07:37:39 +00:00
74 lines
1.5 KiB
TypeScript
74 lines
1.5 KiB
TypeScript
import {Store} from './store';
|
|
|
|
export const EvgaEu: Store = {
|
|
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'
|
|
};
|