UNPKG

@dfinity/oisy-wallet-signer

Version:

A library designed to facilitate communication between a dApp and the OISY Wallet on the Internet Computer.

10 lines (9 loc) 245 B
export declare enum CborTag { Uint64LittleEndian = 71, Semantic = 55799 } /** * Encode a JavaScript value into CBOR. */ export declare function encode(value: any): ArrayBuffer; export declare function decode<T>(input: ArrayBuffer): T;