2023-03-16 19:45:03 +03:00

8 lines
126 B
TypeScript

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