Initial commit
This commit is contained in:
10
shared/types/todo.ts
Normal file
10
shared/types/todo.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
export interface TodoItem {
|
||||
id: string
|
||||
content: string
|
||||
completed: boolean
|
||||
}
|
||||
|
||||
export interface DayTodo {
|
||||
date: string
|
||||
items: TodoItem[]
|
||||
}
|
||||
Reference in New Issue
Block a user