mirror of
https://github.com/public-transport/db-vendo-client.git
synced 2025-02-23 07:09:35 +02:00
30 lines
361 B
JavaScript
30 lines
361 B
JavaScript
const products = [
|
|
{
|
|
id: 'bus',
|
|
mode: 'bus',
|
|
bitmasks: [32],
|
|
name: 'MetroBus',
|
|
short: 'B',
|
|
default: true
|
|
},
|
|
{
|
|
id: 'rapid',
|
|
mode: 'bus',
|
|
bitmasks: [4096],
|
|
name: 'MetroRapid',
|
|
short: 'R',
|
|
default: true
|
|
},
|
|
{
|
|
id: 'rail',
|
|
mode: 'train',
|
|
bitmasks: [8],
|
|
name: 'MetroRail',
|
|
short: 'M',
|
|
default: true
|
|
}
|
|
]
|
|
|
|
export {
|
|
products,
|
|
}
|