AARYAN BAJAJaaryan-bajaj-learnings.hashnode.dev·May 31, 2024Understanding Type Aliases in TypeScriptIntroduction Have you ever found yourself writing the same type definition repeatedly in your TypeScript code? It can be tedious and error-prone. TypeScript offers a powerful feature to streamline your code and make it more maintainable: type aliase...20 likestypescript complex types
Ugne Adomaityteugneadomaityte.hashnode.dev·Mar 11, 2024How and When to Use Type Aliases vs. InterfacesTypeScript has two powerful concepts called type aliases and interfaces. At first, they might seem quite similar, but they have different features and use cases. This article will help you to understand and familiarize yourself with these concepts so...TypeScript
Gaurav J Somanigaurav750.hashnode.dev·Oct 30, 2023Mastering TypeScript: Beyond the Basics with Interfaces, Generics, and MoreMany of us have already dabbled with the basic types TS provides and experienced the safety it provides. But Typescript, like an iceberg, has layers beneath its surface - features that can make our code more flexible, robust and maintainable. In this...2 likes·46 readsTypeScript Generics
Lim Woojaejaylog.hashnode.dev·Jun 4, 2023[TypeScript] Mastering Interface & Type AliasesIntroduction In this article, I will be talking about the differences between type and interface in TypeScirpt. It is important to make use of either type or interface (mostly interface) when you write code in TypeScript. Using them will make your co...46 readsFront-endTypeScript