update docs

This commit is contained in:
Ken
2019-02-20 11:08:33 -08:00
parent 80da2f0566
commit a7acac3ede
64 changed files with 47410 additions and 89 deletions

View File

@@ -0,0 +1,14 @@
export type FilterTypes = 'all' | 'active' | 'completed';
export interface TodoItem {
label: string;
completed: boolean;
}
export interface Store {
todos: {
[id: string]: TodoItem;
};
filter: FilterTypes;
}