Skip to content

JSONPath Tools / @jsonpath-tools/jsonpath / JSONValue

Type Alias: JSONValue

ts
type JSONValue = 
  | string
  | number
  | boolean
  | null
  | JSONValue[]
  | {
[key: string]: JSONValue;
};

Any JSON value.