Skip to content

Instantly share code, notes, and snippets.

@palpich
Created June 30, 2022 13:15
Show Gist options
  • Save palpich/e530dc91a3ba07c890ecbeadc3740262 to your computer and use it in GitHub Desktop.
Save palpich/e530dc91a3ba07c890ecbeadc3740262 to your computer and use it in GitHub Desktop.
String Literal
// https://github.com/microsoft/TypeScript/issues/42644#issuecomment-774315112
type StringLiteral<T> = T extends string
? string extends T
? never
: T
: never
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment