bitpay-sdk
Version:
Complete version of the NodeJS library for the new cryptographically secure BitPay API
18 lines (17 loc) • 466 B
TypeScript
import { z } from 'zod';
export declare const itemInterfaceSchema: z.ZodObject<{
id: z.ZodOptional<z.ZodString>;
description: z.ZodOptional<z.ZodString>;
price: z.ZodNumber;
quantity: z.ZodNumber;
}, "strip", z.ZodTypeAny, {
price: number;
quantity: number;
id?: string | undefined;
description?: string | undefined;
}, {
price: number;
quantity: number;
id?: string | undefined;
description?: string | undefined;
}>;