viem
Version:
22 lines • 721 B
TypeScript
import { BaseError } from './base.js';
export type AccountNotFoundErrorType = AccountNotFoundError & {
name: 'AccountNotFoundError';
};
export declare class AccountNotFoundError extends BaseError {
name: string;
constructor({ docsPath }?: {
docsPath?: string | undefined;
});
}
export type AccountTypeNotSupportedErrorType = AccountTypeNotSupportedError & {
name: 'AccountTypeNotSupportedError';
};
export declare class AccountTypeNotSupportedError extends BaseError {
name: string;
constructor({ docsPath, metaMessages, type, }: {
docsPath?: string | undefined;
metaMessages?: string[] | undefined;
type: string;
});
}
//# sourceMappingURL=account.d.ts.map