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

@@ -11,3 +11,5 @@ export const listCreationFormSchema = z.object({
id: z.boolean(), // Checkbox
idPrefix: z.string().max(8), // Text
});
export type ListCreation = z.infer<typeof listCreationFormSchema>;

View File

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