mirror of
https://github.com/opelly27/streetmerchant.git
synced 2026-05-20 12:17:37 +00:00
f87053cb02
feat: add browser opening to test:notification feat: add c8 and mocha for testing feat: update Docker and ci style: update editorconfig
123 lines
3.0 KiB
TypeScript
123 lines
3.0 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',
|
|
};
|