profileRyan KesPGP keyI build stuffEmailGithubTwitterLast.fmMastodonMatrix

Uppercase

Description

Transforms every string character to uppercase for string literal types.

Syntax

type EnthusiasticGreeting<T extends string> = `${Uppercase<T>}`

type HELLO = EnthusiasticGreeting<"hello">;
// same as
//   type HELLO = "HELLO";

Related