Primitives

Primitives

All primitives types as string.

primitives.type.ts
type Primitives =
  | 'bigint'
  | 'boolean'
  | 'null'
  | 'number'
  | 'string'
  | 'symbol'
  | 'undefined';

Last updated