db-vendo-client/p/rejseplanen/products.js
Kristjan ESPERANTO 66d9fb5194
apply linting rules
follow-up of 228c7253
2024-02-10 16:50:12 +01:00

46 lines
681 B
JavaScript

const products = [
{
id: 'national-train',
mode: 'train',
bitmasks: [1],
name: 'InterCity',
short: 'IC',
default: true,
},
{
id: 'national-train-2',
mode: 'train',
bitmasks: [2],
name: 'ICL', // todo: find proper name
short: 'ICL',
default: true,
},
{
id: 'local-train',
mode: 'train',
bitmasks: [4],
name: 'Regional',
short: 'RE',
default: true,
},
{
id: 'o',
mode: 'train', // todo: correct?
bitmasks: [8],
name: 'Ø', // todo: find proper name
short: 'Ø',
default: true,
},
{
id: 's-tog',
mode: 'train',
bitmasks: [16],
name: 'S-Tog A/B/Bx/C/E/F/H',
short: 'S',
default: true,
},
];
export {
products,
};