Source

constants.js

/**
 * The valid supported mots by the application
 * @type {string[]}
 * @category Constants
 */
const VALID_MOTS = [
  "bus",
  "ferry",
  "gondola",
  "tram",
  "rail",
  "funicular",
  "cable_car",
  "subway"
];

export default VALID_MOTS;