UNPKG

@dfinity/oisy-wallet-signer

Version:

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

15 lines (14 loc) 830 B
import * as z from 'zod/v4'; export declare const RelyingPartyRequestOptionsTimeoutSchema: z.ZodObject<{ timeoutInMilliseconds: z.ZodNumber; }, z.core.$strip>; export declare const RelyingPartyRequestOptionsSchema: z.ZodObject<{ requestId: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodNull]>>; timeoutInMilliseconds: z.ZodOptional<z.ZodNumber>; }, z.core.$strip>; export type RelyingPartyRequestOptions = z.infer<typeof RelyingPartyRequestOptionsSchema>; export declare const RelyingPartyRequestOptionsWithTimeoutSchema: z.ZodObject<{ requestId: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodNull]>>; timeoutInMilliseconds: z.ZodNumber; }, z.core.$strip>; export type RelyingPartyRequestOptionsWithTimeout = z.infer<typeof RelyingPartyRequestOptionsWithTimeoutSchema>;