Last active
January 29, 2025 07:37
-
-
Save mizzy/88978b078626b9c464648f451f01b20a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const HotelLocation = { | |
Fukuoka: "Fukuoka", | |
Odaiba: "Odaiba", | |
Ariake: "Ariake", | |
} as const; | |
const locationCodeMap: LocationCode = { | |
[HotelLocation.Fukuoka]: "FUKHIHI", | |
[HotelLocation.Odaiba]: "TYOTOHI", | |
[HotelLocation.Ariake]: "TYOARDI", | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment