feat: add Todos

This commit is contained in:
Henry Li
2026-01-22 00:26:11 +08:00
parent 08101aa432
commit 1e4e51a80c
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";
}