db-vendo-client/p/mobiliteit-lu/products.js

47 lines
663 B
JavaScript
Raw Normal View History

2022-05-07 16:17:37 +02:00
const products = [
2018-04-09 19:49:18 +02:00
{
id: 'express-train',
mode: 'train',
bitmasks: [1],
name: 'local train (TGV/ICE)',
short: 'TGV/ICE',
default: true,
2018-04-09 19:49:18 +02:00
},
{
id: 'national-train',
mode: 'train',
bitmasks: [2, 4],
2018-04-09 19:49:18 +02:00
name: 'national train (IC/RE/IRE)',
short: 'IC/RE/IRE',
default: true,
2018-04-09 19:49:18 +02:00
},
{
id: 'local-train',
mode: 'train',
bitmasks: [8],
name: 'local train (RB/TER)',
short: 'RB/TER',
default: true,
2018-04-09 19:49:18 +02:00
},
{
id: 'bus',
mode: 'bus',
bitmasks: [32],
name: 'Bus',
short: 'Bus',
default: true,
2018-04-09 19:49:18 +02:00
},
{
id: 'tram',
mode: 'train',
bitmasks: [256],
name: 'Tram',
short: 'Tram',
default: true,
},
];
2022-05-07 16:17:37 +02:00
export {
products,
};