Files

11 lines
147 B
TypeScript
Raw Permalink Normal View History

2026-03-08 01:34:54 +08:00
export interface TodoItem {
id: string
content: string
completed: boolean
}
export interface DayTodo {
date: string
items: TodoItem[]
}