UNPKG

@trezor/connect

Version:

High-level javascript interface for Trezor hardware wallet.

13 lines 403 B
import type { PROTO } from '../constants'; import { AbstractMethod } from '../core/AbstractMethod'; export default class CipherKeyValue extends AbstractMethod<'cipherKeyValue', PROTO.CipherKeyValue[]> { hasBundle?: boolean; init(): void; get info(): string; run(): Promise<{ value: string; } | { value: string; }[]>; } //# sourceMappingURL=cipherKeyValue.d.ts.map