mirror of
https://github.com/microsoft/frontend-bootcamp.git
synced 2026-01-26 14:56:42 +08:00
15 lines
224 B
TypeScript
15 lines
224 B
TypeScript
export type FilterTypes = 'all' | 'active' | 'completed';
|
|
|
|
export interface TodoItem {
|
|
label: string;
|
|
completed: boolean;
|
|
}
|
|
|
|
export interface Store {
|
|
todos: {
|
|
[id: string]: TodoItem;
|
|
};
|
|
|
|
filter: FilterTypes;
|
|
}
|