Skip to content

Instantly share code, notes, and snippets.

@daveharmswebdev
Created November 14, 2017 12:51
Show Gist options
  • Save daveharmswebdev/dc1dc2005018d707e707e718f7a7d763 to your computer and use it in GitHub Desktop.
Save daveharmswebdev/dc1dc2005018d707e707e718f7a7d763 to your computer and use it in GitHub Desktop.
todolist ngrx refactor models
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
};
export interface ITodo {
id?: number;
listId: number;
todo: string;
complete: boolean;
}
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