Skip to content

Commit

Permalink
fix(create): fix typings for create
Browse files Browse the repository at this point in the history
  • Loading branch information
tusharmath committed Dec 26, 2017
1 parent d9a8915 commit 39be615
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sources/Create.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@ class Empty implements IObservable<void> {

export const empty = (): IObservable<void> => new Empty()
export const just = <T>(value: T): IObservable<T> => new JustObservable(value)
export const never = (): IObservable<void> => new Never()
export const never = (): IObservable<any> => new Never()

0 comments on commit 39be615

Please sign in to comment.