mirror of
https://github.com/opelly27/streetmerchant.git
synced 2026-05-20 15:47:35 +00:00
85bbaf905e
Closes: #836 Signed-off-by: Jef LeCompte <jeffreylec@gmail.com>
21 lines
415 B
TypeScript
21 lines
415 B
TypeScript
import {Store} from './store';
|
|
|
|
export const Xbox: Store = {
|
|
labels: {
|
|
outOfStock: {
|
|
container:
|
|
'.src-pages-BundleBuilder-components-BundleBuilderHeader-__BundleBuilderHeader-module___checkoutButton',
|
|
text: ['out of stock']
|
|
}
|
|
},
|
|
links: [
|
|
{
|
|
brand: 'microsoft',
|
|
model: 'xbox series x',
|
|
series: 'xboxsx',
|
|
url: 'https://www.xbox.com/en-us/configure/8WJ714N3RBTL'
|
|
}
|
|
],
|
|
name: 'xbox'
|
|
};
|