🪚 types.ts

This commit is contained in:
nirholas
2026-03-31 10:24:33 +00:00
parent 6fb3b5b0e4
commit 0067be6bab

View File

@@ -16,3 +16,4 @@ export type TodoItem = z.infer<ReturnType<typeof TodoItemSchema>>
export const TodoListSchema = lazySchema(() => z.array(TodoItemSchema())) export const TodoListSchema = lazySchema(() => z.array(TodoItemSchema()))
export type TodoList = z.infer<ReturnType<typeof TodoListSchema>> export type TodoList = z.infer<ReturnType<typeof TodoListSchema>>