Files
streetmerchant/src/store/model/comet.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

42 lines
1.0 KiB
TypeScript

import {Store} from './store';
export const Comet: Store = {
currency: '€',
labels: {
inStock: {
container: '.caption',
text: ['Aggiungi al carrello'],
},
},
links: [
{
brand: 'sony',
cartUrl: 'https://www.comet.it/cart/insert/PSX01802A/online',
model: 'ps5 console',
series: 'sonyps5c',
url: 'https://www.comet.it/ps5/sony-playstation-5',
},
{
brand: 'sony',
model: 'ps5 digital',
series: 'sonyps5de',
url: 'https://www.comet.it/ps5/sony-playstation-5-digital-edition',
},
{
brand: 'microsoft',
cartUrl: 'https://www.comet.it/cart/insert/MIS01077A/online',
model: 'xbox series x',
series: 'xboxsx',
url: 'https://www.comet.it/xbox-serie-x/xbox-series-x',
},
{
brand: 'microsoft',
cartUrl: 'https://www.comet.it/cart/insert/MIS010761/online',
model: 'xbox series s',
series: 'xboxss',
url: 'https://www.comet.it/xbox-serie-x/xbox-series-s',
},
],
name: 'comet',
};