@bigmi/client
Version:
Reactive primitives for Bitcoin apps.
13 lines (12 loc) • 418 B
TypeScript
import { BaseError, ChainId } from "@bigmi/core";
//#region src/errors/config.d.ts
type ChainNotConfiguredErrorType = ChainNotConfiguredError & {
name: "ChainNotConfiguredError";
};
declare class ChainNotConfiguredError extends BaseError {
override name: string;
constructor(chainId?: ChainId);
}
//#endregion
export { ChainNotConfiguredError, ChainNotConfiguredErrorType };
//# sourceMappingURL=config.d.ts.map