mirror of
https://github.com/opelly27/streetmerchant.git
synced 2026-05-20 06:27:38 +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
36 lines
793 B
TypeScript
36 lines
793 B
TypeScript
import {Store} from './store';
|
|
|
|
export const ArgosIE: Store = {
|
|
currency: '€',
|
|
labels: {
|
|
inStock: {
|
|
container: '.btnbuyreserve',
|
|
text: ['buy or reserve'],
|
|
},
|
|
maxPrice: {
|
|
container: '.price',
|
|
},
|
|
outOfStock: {
|
|
container: '#subCopy',
|
|
text: ["We're working hard to get more stock."],
|
|
},
|
|
},
|
|
links: [
|
|
{
|
|
brand: 'microsoft',
|
|
model: 'xbox series x',
|
|
series: 'xboxsx',
|
|
url:
|
|
'http://www.argos.ie/static/Product/partNumber/8448262/Trail/searchtext%3EXBOX+SERIES+X.htm',
|
|
},
|
|
{
|
|
brand: 'sony',
|
|
model: 'ps5 digital',
|
|
series: 'sonyps5de',
|
|
url:
|
|
'http://www.argos.ie/static/Product/partNumber/8349000/Trail/searchtext%3EPS5+CONSOLE.htm',
|
|
},
|
|
],
|
|
name: 'argos-ie',
|
|
};
|