UNPKG

@wiqotech/nestjs-digiflazz

Version:
16 lines (15 loc) 381 B
import { z } from 'zod'; export declare const DepositSchema: z.ZodObject<{ amount: z.ZodNumber; bankCode: z.ZodString; paymentName: z.ZodString; }, "strip", z.ZodTypeAny, { amount: number; bankCode: string; paymentName: string; }, { amount: number; bankCode: string; paymentName: string; }>; export type Deposit = z.infer<typeof DepositSchema>;