tasko/actions/delete-list/schema.ts

6 lines
106 B
TypeScript
Raw Normal View History

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