mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-22 11:36:23 +00:00
400 B
400 B
id | title |
---|---|
4bb57d5a-2f23-4155-b277-9d8446d65db9 | Uncapitalize |
Description
Transforms the first string character to lowercase for string literal types.
Syntax
type UncapitalizedGreeting<T extends string> = `${Uncapitalize<T>}`
type HELLO = CapitalizedGreeting<"Hello">;
// same as
// type HELLO = "hello";