Skip to content

JsonValue

ts
type JsonValue: 
  | null
  | boolean
  | number
  | string
  | {}
  | JsonValue[];

A value that represent any JSON-serializable data