Types
Types<Obj>
Types<Obj>type Types<Obj> = Constructor<Obj> | 'function' | 'object' | Primitives;Generic type variables
Obj
ObjLast updated
Types<Obj>The main types as string values, besides the Constructor which is an instance of an Obj.
type Types<Obj> = Constructor<Obj> | 'function' | 'object' | Primitives;ObjGeneric type variable Obj indicates an instance of the generic type Constructor.
Last updated