Skip to content

Type Alias: EncodeablePrimitive

ts
type EncodeablePrimitive =
  | string
  | number
  | boolean
  | bigint
  | null
  | undefined;

Defines the union of all serializable primitive types.