@metamask/eth-ledger-bridge-keyring
Version:
A MetaMask compatible keyring, for ledger hardware wallets
19 lines • 555 B
text/typescript
export type GetAppNameAndVersionResponse = {
appName: string;
version: string;
};
export type LedgerMobileBridgeOptions = Record<string, never>;
export declare class LedgerStatusError extends Error {
/**
* The status code of the error.
*/
readonly statusCode: number;
/**
* Creates a new LedgerStatusError.
*
* @param statusCode - The status code of the error.
* @param message - The message of the error.
*/
constructor(statusCode: number, message: string);
}
//# sourceMappingURL=type.d.mts.map