Skip to content

Instantly share code, notes, and snippets.

@nomanHasan
Created October 11, 2017 09:05
Show Gist options
  • Save nomanHasan/de7680a0477e88489e990ff29c342da6 to your computer and use it in GitHub Desktop.
Save nomanHasan/de7680a0477e88489e990ff29c342da6 to your computer and use it in GitHub Desktop.
5 #todoapp-angular-ngrx
//.....................
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