bitpay-sdk
Version:
Complete version of the NodeJS library for the new cryptographically secure BitPay API
12 lines (11 loc) • 389 B
TypeScript
import { z } from 'zod';
export declare const invoiceUniversalCodesSchema: z.ZodObject<{
paymentString: z.ZodOptional<z.ZodString>;
verificationLink: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
paymentString?: string | undefined;
verificationLink?: string | undefined;
}, {
paymentString?: string | undefined;
verificationLink?: string | undefined;
}>;