export type JSON = null | string | number | boolean | JSONObject | JSONArray; export type JSONObject = { [x: string]: JSON; }; export type JSONArray = Array;