export type JSONPrimitive = null|boolean|number|string; export interface JSONMap extends Record{} export interface JSONArray extends Array{}; export type JSONType = JSONMap|JSONPrimitive|JSONArray;