mirror of
https://github.com/ahmadk953/tasko.git
synced 2025-02-07 11:42:55 +00:00
7 lines
108 B
TypeScript
7 lines
108 B
TypeScript
|
import { z } from "zod";
|
||
|
|
||
|
export const DeleteCard = z.object({
|
||
|
id: z.string(),
|
||
|
boardId: z.string(),
|
||
|
});
|