@trezor/connect
Version:
High-level javascript interface for Trezor hardware wallet.
10 lines • 382 B
TypeScript
import { PROTO } from '../constants';
import { AbstractMethod } from '../core/AbstractMethod';
export default class CancelCoinjoinAuthorization extends AbstractMethod<'cancelCoinjoinAuthorization', PROTO.CancelAuthorization> {
init(): void;
get info(): string;
run(): Promise<{
message: string;
}>;
}
//# sourceMappingURL=cancelCoinjoinAuthorization.d.ts.map