Skip to content

Commit

Permalink
refactor(groupBy): put back export of GroupedObservable so-as not to …
Browse files Browse the repository at this point in the history
…break existing API (#2906)
  • Loading branch information
jasonaden authored and benlesh committed Oct 5, 2017
1 parent fef68e5 commit 0939f61
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/operator/groupBy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
import { Observable } from '../Observable';
import { Subject } from '../Subject';
import { groupBy as higherOrder, GroupedObservable } from '../operators/groupBy';
export { GroupedObservable };

/* tslint:disable:max-line-length */
export function groupBy<T, K>(this: Observable<T>, keySelector: (value: T) => K): Observable<GroupedObservable<K, T>>;
Expand Down

0 comments on commit 0939f61

Please sign in to comment.