mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-05-04 02:34:52 +00:00
6 lines
114 B
TypeScript
6 lines
114 B
TypeScript
import * as z from 'zod';
|
|
|
|
export const CounterValidation = z.object({
|
|
increment: z.number().min(1).max(3),
|
|
});
|