Skip to content

Commit

Permalink
fix(typings): add explicit return types inside ActionsObservable
Browse files Browse the repository at this point in the history
Closes #96
  • Loading branch information
cobaltkyle committed Aug 16, 2016
1 parent f3d5975 commit 95b4ce4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.d.ts
Expand Up @@ -4,8 +4,8 @@ import { Operator } from 'rxjs/Operator';

export declare class ActionsObservable extends Observable<Action> {
constructor(actionsSubject: Observable<Action>);
lift(operator: Operator<any, Action>);
ofType(...key: any[]);
lift(operator: Operator<any, Action>) : ActionsObservable;
ofType(...key: any[]) : ActionsObservable;
}

export declare interface Epic {
Expand Down

0 comments on commit 95b4ce4

Please sign in to comment.