mirror of
https://github.com/opelly27/streetmerchant.git
synced 2026-05-20 07:37:39 +00:00
41 lines
811 B
TypeScript
41 lines
811 B
TypeScript
import {Store} from './store';
|
|
|
|
export const Game: Store = {
|
|
labels: {
|
|
inStock: {
|
|
container: '.buyingOptions',
|
|
text: ['Pre-order Now', 'Buy New']
|
|
},
|
|
maxPrice: {
|
|
container: '.buyingOptions .btnPrice',
|
|
euroFormat: false
|
|
},
|
|
outOfStock: {
|
|
container: '.buyingOptions',
|
|
text: ['out of stock']
|
|
}
|
|
},
|
|
links: [
|
|
{
|
|
brand: 'test:brand',
|
|
model: 'test:model',
|
|
series: 'test:series',
|
|
url:
|
|
'https://www.game.co.uk/en/ea-sports-fifa-21-500gb-ps4-bundle-2832947'
|
|
},
|
|
{
|
|
brand: 'sony',
|
|
model: 'ps5 console',
|
|
series: 'sonyps5c',
|
|
url: 'https://www.game.co.uk/en/playstation-5-console-2826338'
|
|
},
|
|
{
|
|
brand: 'sony',
|
|
model: 'ps5 digital',
|
|
series: 'sonyps5de',
|
|
url: 'https://www.game.co.uk/en/playstation-5-digital-edition-2826341'
|
|
}
|
|
],
|
|
name: 'game'
|
|
};
|