Types

Types<Obj>

The main types as string values, besides the Constructor which is an instance of an Obj.

types.type.ts
type Types<Obj> = Constructor<Obj> | 'function' | 'object' | Primitives;

Generic type variables

Obj

Generic type variable Obj indicates an instance of the generic type Constructor.

Last updated