feat: add Todos

This commit is contained in:
Henry Li
2026-01-22 00:26:11 +08:00
parent 085dff8d29
commit 44850d9a61
16 changed files with 232 additions and 72 deletions
+1
View File
@@ -0,0 +1 @@
export * from "./types";
+4
View File
@@ -0,0 +1,4 @@
export interface Todo {
content?: string;
status?: "pending" | "in_progress" | "completed";
}