type Primitive = string | number | boolean; export type JSONArray = JSONValue[]; export type JSONValue = Primitive | JSONArray | JSONObject; /** * JSON Object which can be used for sendEvent API */ export interface JSONObject { [key: string]: JSONValue; } export {}; //# sourceMappingURL=Json.d.ts.map