UNPKG

bitpay-sdk

Version:

Complete version of the NodeJS library for the new cryptographically secure BitPay API

18 lines (17 loc) 570 B
import { z } from 'zod'; export declare const invoiceEventTokenInterfaceSchema: z.ZodObject<{ url: z.ZodNullable<z.ZodString>; token: z.ZodNullable<z.ZodString>; events: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; actions: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; }, "strip", z.ZodTypeAny, { url: string | null; token: string | null; events?: string[] | undefined; actions?: string[] | undefined; }, { url: string | null; token: string | null; events?: string[] | undefined; actions?: string[] | undefined; }>;