Skip to content

Commit

Permalink
Merge pull request #9 from ngrx/master
Browse files Browse the repository at this point in the history
Update upstream
  • Loading branch information
GulajavaMinistudio authored Sep 1, 2017
2 parents 2ae45b3 + 870a73d commit c4bb6ca
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/effects/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ import 'rxjs/add/operator/takeUntil';
import { Injectable } from '@angular/core';
import { Observable } from 'rxjs/Observable';
import { Action } from '@ngrx/store';
import { Actions, Effect, OnRunEffects, EffectsNotification } from '@ngrx/effects';
import { Actions, Effect, OnRunEffects, EffectNotification } from '@ngrx/effects';

@Injectable()
export class UserEffects implements OnRunEffects {
Expand All @@ -119,7 +119,7 @@ export class UserEffects implements OnRunEffects {
console.log(action);
});

ngrxOnRunEffects(resolvedEffects$: Observable<EffectsNotification>) {
ngrxOnRunEffects(resolvedEffects$: Observable<EffectNotification>) {
return this.actions$.ofType('LOGGED_IN')
.exhaustMap(() => resolvedEffects$.takeUntil('LOGGED_OUT'));
}
Expand Down
2 changes: 2 additions & 0 deletions docs/router-store/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ Install @ngrx/router-store from npm:

`npm install github:ngrx/router-store-builds` OR `yarn add github:ngrx/router-store-builds`

## Usage

During the navigation, before any guards or resolvers run, the router will dispatch a ROUTER_NAVIGATION action, which has the following signature:

```ts
Expand Down

0 comments on commit c4bb6ca

Please sign in to comment.