UNPKG

postchain-client

Version:

Client library for accessing a Postchain node through REST.

18 lines (17 loc) 580 B
import { CustomError } from "../customError"; import { ASNValue } from "./types"; export declare class UnexpectedArgumentTypeError extends CustomError { constructor(typedArg: ASNValue); } export declare class MissingGtxException extends CustomError { constructor(); } export declare class AlreadySignedTransactionException extends CustomError { constructor(operation: string); } export declare class NumberOfSignersAndSignaturesException extends CustomError { constructor(); } export declare class MissingSignerException extends CustomError { constructor(); }