Typescript Generics Explained
Learn what generics are and how they are used in Typescript
Generics: the ability to abstract types
The implementation of generics in Typescript give us the ability to pass in a range of types to a component, adding an extra layer of abstraction and re-usability to your code. Generics can be applied to functions…