@bigmi/react
Version:
React primitives for Bitcoin apps.
12 lines • 411 B
TypeScript
import { BaseError } from "@bigmi/core";
//#region src/errors/context.d.ts
type BigmiProviderNotFoundErrorType = BigmiProviderNotFoundError & {
name: "BigmiProviderNotFoundError";
};
declare class BigmiProviderNotFoundError extends BaseError {
override name: string;
constructor();
}
//#endregion
export { BigmiProviderNotFoundError, BigmiProviderNotFoundErrorType };
//# sourceMappingURL=context.d.ts.map