JsonSerializable

type JsonSerializable: 
  | undefined
  | null
  | string
  | number
  | boolean
  | JsonArray
  | JsonObject;

Any type that can be natively converted to a string with JSON.stringify.