UNPKG

bitpay-sdk

Version:

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

18 lines (17 loc) 441 B
import { z } from 'zod'; export declare const payoutTransactionInterfaceSchema: z.ZodObject<{ txid: z.ZodString; amount: z.ZodNumber; date: z.ZodString; confirmations: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { date: string; amount: number; txid: string; confirmations?: number | undefined; }, { date: string; amount: number; txid: string; confirmations?: number | undefined; }>;