UNPKG

@mavrykdynamics/taquito

Version:

High level functionality that builds upon the other packages in the Mavryk Typescript Library Suite.

17 lines (16 loc) 562 B
import { MavrykToolkitConfigError, NetworkError } from '@mavrykdynamics/taquito-core'; /** * @category Error * @description Error that indicates undefined confirmation has not been specified or configured */ export declare class ConfirmationUndefinedError extends MavrykToolkitConfigError { constructor(); } /** * @category Error * @description Error that indicates a generic failure when trying to fetch an observable */ export declare class ObservableError extends NetworkError { readonly message: string; constructor(message: string); }