Skip to content

Commit

Permalink
Merge pull request #1880 from david-driscoll/fix-catch
Browse files Browse the repository at this point in the history
fix(catch): removed unneeded overload for catch
  • Loading branch information
kwonoj authored Aug 16, 2016
2 parents a2b2f3d + dd0e586 commit 64ecb9e
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/operator/catch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ export function _catch<T, R>(selector: (err: any, caught: Observable<T>) => Obse
}

export interface CatchSignature<T> {
(selector: (err: any, caught: Observable<T>) => ObservableInput<T>): Observable<T>;
<R>(selector: (err: any, caught: Observable<T>) => ObservableInput<R>): Observable<R>;
}

Expand Down

0 comments on commit 64ecb9e

Please sign in to comment.