Created
June 30, 2022 13:15
-
-
Save palpich/e530dc91a3ba07c890ecbeadc3740262 to your computer and use it in GitHub Desktop.
String Literal
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
// 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