bitpay-sdk
Version:
Complete version of the NodeJS library for the new cryptographically secure BitPay API
24 lines (23 loc) • 698 B
TypeScript
import { z } from 'zod';
export declare const withHoldingsInterfaceSchema: z.ZodObject<{
amount: z.ZodNumber;
code: z.ZodString;
description: z.ZodOptional<z.ZodString>;
notes: z.ZodOptional<z.ZodString>;
label: z.ZodOptional<z.ZodString>;
bankCountry: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
code: string;
amount: number;
label?: string | undefined;
description?: string | undefined;
bankCountry?: string | undefined;
notes?: string | undefined;
}, {
code: string;
amount: number;
label?: string | undefined;
description?: string | undefined;
bankCountry?: string | undefined;
notes?: string | undefined;
}>;