@trezor/connect
Version:
High-level javascript interface for Trezor hardware wallet.
14 lines • 435 B
TypeScript
import { MessagesSchema as PROTO } from '@trezor/protobuf';
import { AbstractMethod } from '../core/AbstractMethod';
export default class LoadDevice extends AbstractMethod<'loadDevice', PROTO.LoadDevice> {
init(): void;
get info(): string;
get confirmation(): {
view: "device-management";
label: string;
};
run(): Promise<{
message: string;
}>;
}
//# sourceMappingURL=loadDevice.d.ts.map