Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix(typings): lift now uses correct return type, instead of (#208)
`any`.

fixes #187
  • Loading branch information
jayphelps authored and rgbkrk committed Mar 6, 2017
1 parent fb911a8 commit b4690bf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion index.d.ts
Expand Up @@ -23,7 +23,8 @@ export declare class ActionsObservable<T> extends Observable<T> {
static from<T, R>(ish: ArrayLike<T>, scheduler?: Scheduler): ActionsObservable<R>;

constructor(input$: Observable<T>);
lift(operator: Operator<any, T>): ActionsObservable<T>;
lift<R>(operator: Operator<T, R>): ActionsObservable<R>;
ofType(...key: string[]): ActionsObservable<T>;
ofType(...key: any[]): ActionsObservable<T>;
}

Expand Down

0 comments on commit b4690bf

Please sign in to comment.