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
// NGRX Complete Tutorial Without Pain (Angular6 / RxJS6) | |
// https://medium.com/@andrew.kao/ngrx-complete-tutorial-without-pain-angular6-rxjs6-5511b8cb8dac | |
import { Action } from '@ngrx/store'; | |
// Use 'enum' to be registered as a map later | |
export enum AuthActionTypes { | |
Login = '[Auth] Login', | |
Success = '[Auth] Success', | |
Failed = '[Auth] Failed', |
NewerOlder