Generic with Construction Functions
This lesson explains how to apply the generic type to a construction function.
We'll cover the following...
Restricting the signature of a constructor
In some scenarios, someone may need to instantiate a generic object from a function.
const obj = funct(TypeIWantToInstantiate, parameter1, parameterx);
The goal is to have a type constraint on the construction of an object type.
It is possible to use the constructed signature in a ...