Skip to content

Commit

Permalink
chore(typings): update type definition for finally
Browse files Browse the repository at this point in the history
- pass type of source observable

closes ReactiveX#1672
  • Loading branch information
kwonoj committed Apr 29, 2016
1 parent 1e57229 commit 3ace1af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/operator/finally.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export function _finally<T>(callback: () => void): Observable<T> {
}

export interface FinallySignature<T> {
<T>(callback: () => void): Observable<T>;
(callback: () => void): Observable<T>;
}

class FinallyOperator<T> implements Operator<T, T> {
Expand Down

0 comments on commit 3ace1af

Please sign in to comment.