export type
This commit is contained in:
@@ -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>;
|
||||
|
||||
@@ -1,3 +1,5 @@
|
||||
import { z } from "zod";
|
||||
|
||||
export const taskCreationFormSchema = z.object({});
|
||||
|
||||
export type TaskCreation = z.infer<typeof taskCreationFormSchema>;
|
||||
|
||||
Reference in New Issue
Block a user