UNPKG

@tristeroresearch/mach-sdk

Version:

A TypeScript SDK for integrating with Mach's API.

13 lines 339 B
/** * @module SDKError * @description SDKError class */ import type { BaseError } from './baseError.js'; import type { ErrorCode } from './constants.js'; export declare class SDKError extends Error { code: ErrorCode; name: string; cause: BaseError; constructor(cause: BaseError); } //# sourceMappingURL=SDKError.d.ts.map