UNPKG

postchain-client

Version:

Client library for accessing a Postchain node through REST.

12 lines (11 loc) 223 B
/// <reference types="node" /> export type Step = { side: number; hash: Buffer; }; export type StringStep = { side: number; hash: string; }; export type Path = Step[]; export type StringPath = StringStep[];