export type JSONValue = null | boolean | number | string | JSONArray | JSONObject; export interface JSONArray extends Array { } export interface JSONObject { [key: string]: JSONValue; }