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

46 lines
663 B
JavaScript

const products = [
{
id: 'express-train',
mode: 'train',
bitmasks: [1],
name: 'local train (TGV/ICE)',
short: 'TGV/ICE',
default: true,
},
{
id: 'national-train',
mode: 'train',
bitmasks: [2, 4],
name: 'national train (IC/RE/IRE)',
short: 'IC/RE/IRE',
default: true,
},
{
id: 'local-train',
mode: 'train',
bitmasks: [8],
name: 'local train (RB/TER)',
short: 'RB/TER',
default: true,
},
{
id: 'bus',
mode: 'bus',
bitmasks: [32],
name: 'Bus',
short: 'Bus',
default: true,
},
{
id: 'tram',
mode: 'train',
bitmasks: [256],
name: 'Tram',
short: 'Tram',
default: true,
},
];
export {
products,
};