/** Any value that can be represented in JSON */ export type JSONValue = string | number | boolean | null | JSONValue[] | { [key: string]: JSONValue; }; /** JSON object with string keys */ export type JSONObject = Record;