Skip to content
This repository was archived by the owner on Dec 26, 2017. It is now read-only.

Commit d264b4f

Browse files
smac89brandonroberts
authored andcommitted
fix(Effects): Updated signature for with lift method (#163)
Fixes support for TypeScript >=2.4 closes #161
1 parent c5ccdb4 commit d264b4f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/actions.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export class Actions extends Observable<Action> {
1414
this.source = actionsSubject;
1515
}
1616

17-
lift(operator: Operator<any, Action>): Observable<Action> {
17+
lift<Action>(operator: Operator<any, Action>): Observable<Action> {
1818
const observable = new Actions(this);
1919
observable.operator = operator;
2020
return observable;
@@ -35,4 +35,4 @@ export class Actions extends Observable<Action> {
3535
return false;
3636
});
3737
}
38-
}
38+
}

0 commit comments

Comments
 (0)