#typescript
Read more stories on Hashnode
Articles with this tag
The Pick type in TypeScript is a powerful utility that enables you to create a new type by selecting specific properties from an existing type. It...
The Partial type in TypeScript is a versatile utility type that allows you to create a new type by marking all properties of an existing type as...
Enums in TypeScript are a powerful construct that allows you to define a set of named constants with more expressive values. They provide a way to...
The Omit type is a valuable utility type in TypeScript that allows you to create a new type by excluding specific properties from an existing type. It...
Literal Types in TypeScript allow you to specify exact values for variables or properties. Unlike regular types that can represent a range of possible...
Read-Only Types are a powerful feature in TypeScript that allows you to create immutable or read-only versions of your data structures. By marking...