Skip to content

Commit

Permalink
fix(error): fix type signature
Browse files Browse the repository at this point in the history
  • Loading branch information
TylorS committed Nov 10, 2016
1 parent d50a7e6 commit 4534e42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/combinators/error.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ export interface ErrorFn {

export interface CurriedErrorFn<T> {
(holdSubject: HoldSubject<T>): HoldSubject<T>;
(subject: Subject<T>): HoldSubject<T>;
(subject: Subject<T>): Subject<T>;
}

0 comments on commit 4534e42

Please sign in to comment.