2022-11-11 11:54:16 +03:00

8 lines
126 B
TypeScript

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