@dfinity/oisy-wallet-signer
Version:
A library designed to facilitate communication between a dApp and the OISY Wallet on the Internet Computer.
9 lines (8 loc) • 346 B
TypeScript
import { type RpcResponse, type RpcResponseError } from '../types/rpc';
import type { Notify } from '../types/signer-handlers';
export declare const notifyError: ({ id, error, origin }: {
error: RpcResponseError;
} & Notify) => void;
export declare const notify: ({ msg, origin }: {
msg: RpcResponse;
} & Pick<Notify, "origin">) => void;