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