2023-03-28 09:33:17 +03:00

8 lines
126 B
TypeScript

import { z } from 'zod';
const PaymentsSchema = z.object({
values: z.number().array(),
});
export default PaymentsSchema;