mirror of
https://github.com/ahmadk953/tasko.git
synced 2025-01-31 09:03:36 +00:00
14 lines
311 B
TypeScript
14 lines
311 B
TypeScript
import { z } from 'zod';
|
|
|
|
export const UpdateList = z.object({
|
|
title: z
|
|
.string({
|
|
required_error: 'Title is required',
|
|
invalid_type_error: 'Title must be a string',
|
|
})
|
|
.min(2, {
|
|
message: 'Title must be at least 2 characters',
|
|
}),
|
|
id: z.string(),
|
|
boardId: z.string(),
|
|
});
|