hashbrown

JsonValue

JSON-compatible value shape returned by the parser once complete.

API

export type JsonValue =
  | null
  | boolean
  | number
  | string
  |  JsonValue []
  | {
      [key: string]:  JsonValue ;
    };