export type JsonValue = null | string | number | boolean; export type JsonArray = Array; export interface JsonObject { [key: string]: JsonObject | JsonArray | JsonValue; } export type Json = JsonArray | JsonObject; //# sourceMappingURL=json.d.ts.map