Created
September 12, 2018 10:31
-
-
Save fxck/dff28a1b9a37143ebe52778dd7b0b365 to your computer and use it in GitHub Desktop.
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
@Injectable() | |
export class UsersEffects { | |
@Effect() | |
private _onListRequest$ = this._actions$.pipe( | |
ofType('USER_LIST_REQUEST'), | |
map((action) => new LoadingAdd(action.type)) | |
); | |
constructor(private _actions$: Actions) { } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment