edtechdemo / src /validations /CounterValidation.ts
Hoang Nguyen
init app
f75d7fa
raw
history blame contribute delete
120 Bytes
import { z } from 'zod';
export const CounterValidation = z.object({
increment: z.coerce.number().min(1).max(3),
});