@dfinity/oisy-wallet-signer
Version:
A library designed to facilitate communication between a dApp and the OISY Wallet on the Internet Computer.
14 lines (13 loc) • 729 B
TypeScript
import type { Notify } from '../types/signer-handlers';
export declare const notifyErrorRequestNotSupported: ({ message, ...notify }: Notify & {
message?: string;
}) => void;
export declare const notifyErrorActionAborted: (notify: Notify) => void;
export declare const notifyNetworkError: ({ message, ...notify }: Notify & {
message: string;
}) => void;
export declare const notifyErrorPermissionNotGranted: (notify: Notify) => void;
export declare const notifyErrorMissingPrompt: (notify: Notify) => void;
export declare const notifyErrorSenderNotAllowed: (notify: Notify) => void;
export declare const notifyErrorBusy: (notify: Notify) => void;
export declare const notifyErrorNotInitialized: (notify: Notify) => void;