bitpay-sdk
Version:
Complete version of the NodeJS library for the new cryptographically secure BitPay API
18 lines (17 loc) • 628 B
TypeScript
import { z } from 'zod';
export declare const refundInfoInterfaceSchema: z.ZodObject<{
supportRequest: z.ZodOptional<z.ZodString>;
currency: z.ZodString;
refundRequestEid: z.ZodOptional<z.ZodString>;
amounts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
}, "strip", z.ZodTypeAny, {
currency: string;
supportRequest?: string | undefined;
amounts?: Record<string, number> | undefined;
refundRequestEid?: string | undefined;
}, {
currency: string;
supportRequest?: string | undefined;
amounts?: Record<string, number> | undefined;
refundRequestEid?: string | undefined;
}>;