Files
frontend-bootcamp/docs/step2-09/exercise/src/store/index.ts
2019-02-25 13:12:18 -08:00

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;
}