mirror of
https://github.com/opelly27/streetmerchant.git
synced 2026-05-20 15:47:35 +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
35 lines
770 B
TypeScript
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',
|
|
};
|