2023-01-11 11:26:08 +03:00

8 lines
126 B
TypeScript

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