UNPKG

@dfinity/oisy-wallet-signer

Version:

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

10 lines (9 loc) 364 B
import { Principal } from '@dfinity/principal'; import { z } from 'zod/v4'; export declare const PrincipalObjSchema: z.ZodPipe<z.ZodObject<{ _isPrincipal: z.ZodLiteral<true>; _arr: z.ZodCustom<Uint8Array<ArrayBuffer>, Uint8Array<ArrayBuffer>>; }, z.core.$strict>, z.ZodTransform<Principal, { _isPrincipal: true; _arr: Uint8Array<ArrayBuffer>; }>>;