Skip to content

Commit b9c6679

Browse files
azhukaudevbrandonroberts
authored andcommitted
chore(docs): Added missing imports to Effects docs (#159)
1 parent c77b2d9 commit b9c6679

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/effects/api.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ Usage:
6161
```ts
6262
import 'rxjs/add/operator/do';
6363
import { Injectable } from '@angular/core';
64-
import { Actions } from '@ngrx/effects';
64+
import { Actions, Effect } from '@ngrx/effects';
6565

6666
@Injectable()
6767
export class SomeEffectsClass {
@@ -81,7 +81,7 @@ Usage:
8181
```ts
8282
import 'rxjs/add/operator/do';
8383
import { Injectable } from '@angular/core';
84-
import { Actions } from '@ngrx/effects';
84+
import { Actions, Effect } from '@ngrx/effects';
8585

8686
@Injectable()
8787
export class SomeEffectsClass {
@@ -136,7 +136,7 @@ Usage:
136136
import 'rxjs/add/operator/do';
137137
import 'rxjs/add/operator/map';
138138
import { Injectable } from '@angular/core';
139-
import { Actions, toPayload } from '@ngrx/effects';
139+
import { Actions, Effect, toPayload } from '@ngrx/effects';
140140

141141
@Injectable()
142142
export class SomeEffectsClass {

0 commit comments

Comments
 (0)