How to convert a string literal type into a lowercase format in TypeScript?
Originally Published Here ๐!
To convert a string literal type into a lowercase format, you can use the built-in Lowercase type that comes with TypeScript.
TL;DR
// string literal type
type Greeting = "Hi, How Are you?";
// convert string literal ty...
melvingeorge-me.hashnode.dev1 min read