export type

This commit is contained in:
2024-11-22 22:22:24 -06:00
parent 4a43b48eb4
commit 13648edf55
2 changed files with 4 additions and 0 deletions

View File

@@ -1,3 +1,5 @@
import { z } from "zod";
export const taskCreationFormSchema = z.object({});
export type TaskCreation = z.infer<typeof taskCreationFormSchema>;