UNPKG

@dfinity/candid

Version:

JavaScript and TypeScript library to work with candid interfaces

6 lines 242 B
export interface JsonArray extends Array<JsonValue> { } export interface JsonObject extends Record<string, JsonValue> { } export type JsonValue = boolean | string | number | bigint | JsonArray | JsonObject; //# sourceMappingURL=types.d.ts.map