mirror of
https://github.com/opelly27/streetmerchant.git
synced 2026-05-20 06:27:38 +00:00
605bdd7ca7
Co-authored-by: fuckingrobot <fuckingrobot@users.noreply.github.com> Co-authored-by: Jef LeCompte <jeffreylec@gmail.com>
35 lines
755 B
TypeScript
35 lines
755 B
TypeScript
import {Store} from './store';
|
|
|
|
export const EvgaEu: Store = {
|
|
links: [
|
|
{
|
|
brand: 'evga',
|
|
model: 'xc3 black',
|
|
series: '3080',
|
|
url: 'https://eu.evga.com/products/product.aspx?pn=10G-P5-3881-KR'
|
|
},
|
|
{
|
|
brand: 'evga',
|
|
model: 'ftw3',
|
|
series: '3080',
|
|
url: 'https://eu.evga.com/products/product.aspx?pn=10G-P5-3895-KR'
|
|
},
|
|
{
|
|
brand: 'evga',
|
|
model: 'xc3',
|
|
series: '3080',
|
|
url: 'https://eu.evga.com/products/product.aspx?pn=10G-P5-3883-KR'
|
|
},
|
|
{
|
|
brand: 'evga',
|
|
model: 'xc3 ultra',
|
|
series: '3080',
|
|
url: 'https://eu.evga.com/products/product.aspx?pn=10G-P5-3885-KR'
|
|
}
|
|
],
|
|
labels: {
|
|
outOfStock: ['tbd', 'out of stock', 'error reaching the evga website', 'oops! something broke.']
|
|
},
|
|
name: 'evga-eu'
|
|
};
|