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

38 lines
625 B
JavaScript

const products = [
{
id: 'high-speed-train',
mode: 'train',
bitmasks: [1, 2],
name: 'ExpressInterCity & ExpressInterCity Premium & InterCityExpress',
short: 'EIC/EIP/ICE',
default: true,
},
{
id: 'long-distance-train',
mode: 'train',
bitmasks: [4],
name: 'InterCity & Twoje Linie Kolejowe & EuroCity & EuroNight',
short: 'IC/TLK/EC/EN',
default: true,
},
{
id: 'regional-train',
mode: 'train',
bitmasks: [8],
name: 'Regional',
short: 'R',
default: true,
},
{
id: 'bus',
mode: 'bus',
bitmasks: [32],
name: 'Bus',
short: 'B',
default: true,
},
];
export {
products,
};