@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) • 355 B
TypeScript
import * as z from 'zod';
declare const NotifySchema: z.ZodObject<{
id: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodNull]>;
origin: z.ZodString;
}, "strip", z.ZodTypeAny, {
id: string | number | null;
origin: string;
}, {
id: string | number | null;
origin: string;
}>;
export type Notify = z.infer<typeof NotifySchema>;
export {};