UNPKG

matrix-js-sdk

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