wowok
Version:
Wowok Blockchain TypeScript API
9 lines (8 loc) • 331 B
TypeScript
import type { ObjectResponseError } from "../client/index.js";
export declare class WowClientError extends Error {
}
export declare class ObjectError extends WowClientError {
code: string;
constructor(code: string, message: string);
static fromResponse(response: ObjectResponseError, objectId?: string): ObjectError;
}