UNPKG

@dfinity/candid

Version:

JavaScript and TypeScript library to work with candid interfaces

6 lines (5 loc) 198 B
export interface JsonArray extends Array<JsonValue> { } export interface JsonObject extends Record<string, JsonValue> { } export type JsonValue = boolean | string | number | JsonArray | JsonObject;