Skip to content

Instantly share code, notes, and snippets.

@TCotton
Created August 19, 2025 05:55
Show Gist options
  • Save TCotton/fe711b4b7dd11ea487af5cb736a2a62f to your computer and use it in GitHub Desktop.
Save TCotton/fe711b4b7dd11ea487af5cb736a2a62f to your computer and use it in GitHub Desktop.
Better TypeScript ENUMs
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