Created
October 11, 2017 09:05
-
-
Save nomanHasan/de7680a0477e88489e990ff29c342da6 to your computer and use it in GitHub Desktop.
5 #todoapp-angular-ngrx
This file contains hidden or 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 const COMPLETE_TODO = 'COMPLETE_TODO' | |
//................... | |
export class CompleteTodo implements Action { | |
readonly type = COMPLETE_TODO; | |
constructor(public payload: TodoState){} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment