UNPKG

@dfinity/candid

Version:

JavaScript and TypeScript library to work with candid interfaces

8 lines (4 loc) 269 B
/* eslint-disable @typescript-eslint/no-empty-object-type */ export interface JsonArray extends Array<JsonValue> {} export interface JsonObject extends Record<string, JsonValue> {} export type JsonValue = boolean | string | number | bigint | JsonArray | JsonObject;