UNPKG

postchain-client

Version:

Client library for accessing a Postchain node through REST.

6 lines (5 loc) 210 B
/// <reference types="node" /> export type RawGtv = null | boolean | Buffer | string | number | DictPair | Array<RawGtv> | ReadonlyArray<RawGtv> | bigint; export type DictPair = { [key: string]: RawGtv; };