Source

constants.js

  1. /**
  2. * The valid supported mots by the application
  3. * @type {string[]}
  4. * @category Constants
  5. */
  6. const VALID_MOTS = [
  7. "bus",
  8. "ferry",
  9. "gondola",
  10. "tram",
  11. "rail",
  12. "funicular",
  13. "cable_car",
  14. "subway"
  15. ];
  16. export default VALID_MOTS;