mirror of
https://github.com/ahmadk953/tasko.git
synced 2025-02-14 23:02:07 +00:00
5 lines
84 B
TypeScript
5 lines
84 B
TypeScript
|
import { z } from "zod";
|
||
|
|
||
|
export const DeleteBoard = z.object({
|
||
|
id: z.string(),
|
||
|
})
|