Spaces:
Running
Running
import { z } from 'zod'; | |
export const CounterValidation = z.object({ | |
increment: z.coerce.number().min(1).max(3), | |
}); | |
import { z } from 'zod'; | |
export const CounterValidation = z.object({ | |
increment: z.coerce.number().min(1).max(3), | |
}); | |