UNPKG

@dfinity/oisy-wallet-signer

Version:

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

11 lines (10 loc) 237 B
export declare const set: <T>({ key, value }: { key: string; value: T; }) => void; export declare const del: ({ key }: { key: string; }) => void; export declare const get: <T>({ key }: { key: string; }) => T | undefined;