tasko/actions/delete-card/schema.ts

7 lines
108 B
TypeScript
Raw Normal View History

2024-02-14 21:30:10 -05:00
import { z } from "zod";
export const DeleteCard = z.object({
id: z.string(),
boardId: z.string(),
});