ts-reset
ts-reset copied to clipboard
Add string-case types
This solves #16
type Union = "a" | "b" | "c";
const foo: Union = "a";
const fooUpperCased: Uppercase<Union> = foo.toUpperCase(); // should be 'A' | 'B' | 'C'