hashbrown

JsonResolvedValue

JSON value that may be partially resolved while parsing.

API

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