Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 384 Bytes

File metadata and controls

20 lines (15 loc) · 384 Bytes

Home > types-kit > Primitive

Primitive type

Matches any primitive value.

Signature:

export type Primitive =
  | null
  | undefined
  | string
  | number
  | boolean
  | symbol
  | bigint