tasko/actions/delete-list/schema.ts

7 lines
108 B
TypeScript
Raw Normal View History

2024-02-16 01:49:19 +00:00
import { z } from 'zod';
2024-02-15 02:30:10 +00:00
export const DeleteList = z.object({
id: z.string(),
boardId: z.string(),
2024-02-16 01:49:19 +00:00
});