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