Created
August 19, 2025 05:55
-
-
Save TCotton/fe711b4b7dd11ea487af5cb736a2a62f to your computer and use it in GitHub Desktop.
Better TypeScript ENUMs
This file contains hidden or 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 LOG_LEVEL = { | |
| DEBUG: "DEBUG", | |
| WARNING: "WARNING", | |
| ERROR: "ERROR", | |
| } as const | |
| type ObjectValues <T> = T[keyof T]; | |
| type LogLevel = ObjectValues<typeof LOG_LEVEL> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment