15 lines
476 B
JavaScript
15 lines
476 B
JavaScript
/**
|
|
* @file Due to these records being used in next.config.js, and that is required
|
|
* to be a js file, we use jsdoc to type these.
|
|
*/
|
|
|
|
/** @type {import('@/types/routes').LangRoute} */
|
|
export const findMyBooking = {
|
|
da: "/da/hotelreservation/hent-booking",
|
|
de: "/de/hotelreservation/mein-bereich",
|
|
en: "/en/hotelreservation/get-booking",
|
|
fi: "/fi/hotelreservation/hae-varaus",
|
|
no: "/no/hotelreservation/get-booking",
|
|
sv: "/sv/hotelreservation/hitta-bokning",
|
|
}
|