Created
November 14, 2017 12:51
-
-
Save daveharmswebdev/dc1dc2005018d707e707e718f7a7d763 to your computer and use it in GitHub Desktop.
todolist ngrx refactor models
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { ITodoList } from './todoList'; | |
import { ITodo } from './todo'; | |
export interface IAppState { | |
todoLists: ITodoList[]; | |
currentTodoList: number; | |
todos: ITodo[]; | |
} | |
export const INITIAL_STATE: IAppState = { | |
todoLists: undefined, | |
currentTodoList: undefined, | |
todos: undefined | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export interface ITodo { | |
id?: number; | |
listId: number; | |
todo: string; | |
complete: boolean; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export interface ITodoList { | |
id: number; | |
listName: string; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment