UNPKG

bitpay-sdk

Version:

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

15 lines (14 loc) 442 B
import { z } from 'zod'; export declare const refundInfoSchema: z.ZodObject<{ supportRequest: z.ZodString; currency: z.ZodString; amounts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>; }, "strip", z.ZodTypeAny, { currency: string; supportRequest: string; amounts?: Record<string, number> | undefined; }, { currency: string; supportRequest: string; amounts?: Record<string, number> | undefined; }>;