#types
Read more stories on Hashnode
Articles with this tag
The keyof operator is used to extract the keys of an object type and use them as a type. The keyof takes an object as input and returns a union type...
TypeScript provides various utility types that make types transformation very easy. We can transform existing types into several other types. These...
Introduction Type Aliases and Interfaces help us to write reusable type definitions, and it is crucial for a developer to write reusable code. Also,...