Files
streetmerchant/src/store/model/shopto.ts
T
Jef LeCompte f87053cb02 refactor: use gts instead of xo
feat: add browser opening to test:notification
feat: add c8 and mocha for testing
feat: update Docker and ci
style: update editorconfig
2021-01-17 15:21:53 -05:00

35 lines
770 B
TypeScript

import {Store} from './store';
export const ShopTo: Store = {
currency: '£',
labels: {
inStock: {
container: '.orderbox_inventory',
text: ['In Stock'],
},
},
links: [
{
brand: 'test:brand',
model: 'test:model',
series: 'test:series',
url:
'https://www.shopto.net/en/ps5du00-dualsense-controller-playstation-5-p195100/',
},
{
brand: 'sony',
model: 'ps5 console',
series: 'sonyps5c',
url: 'https://www.shopto.net/en/ps5hw01-playstation-5-console-p191472/',
},
{
brand: 'sony',
model: 'ps5 digital',
series: 'sonyps5de',
url:
'https://www.shopto.net/en/ps5hw02-playstation-5-digital-console-p195341/',
},
],
name: 'shopto',
};