refactor: 优化反馈和布局
This commit is contained in:
@@ -1,16 +0,0 @@
|
||||
export interface Todo {
|
||||
id: string;
|
||||
title: string;
|
||||
description?: string;
|
||||
completed: boolean;
|
||||
deadline?: string;
|
||||
priority?: "low" | "medium" | "high";
|
||||
createdAt: string;
|
||||
updatedAt?: string;
|
||||
}
|
||||
|
||||
export interface TodoState {
|
||||
todos: Todo[];
|
||||
loading: boolean;
|
||||
error: string | null;
|
||||
}
|
||||
Reference in New Issue
Block a user