Skip to content

Commit

Permalink
fix(OrderedIterable): export ordered iterables. Fixes #31
Browse files Browse the repository at this point in the history
  • Loading branch information
mattpodwysocki committed Sep 1, 2017
1 parent 6464e7a commit 7127771
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion src/Ix.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,17 @@
import { IterableX } from './iterable';
import { AsyncSink } from './asyncsink';
import { AsyncIterableX } from './asynciterable';
import { OrderedIterableX } from './iterable/orderby';
import { OrderedAsyncIterableX } from './asynciterable/orderby';

export { IterableX as Iterable, AsyncSink, AsyncIterableX as AsyncIterable };
export {
IterableX as Iterable,
AsyncSink,
AsyncIterableX as AsyncIterable
};

export type OrderedIterable<TKey, TSource> = OrderedIterableX<TKey, TSource>;
export type OrderedAsyncIterable<TKey, TSource> = OrderedAsyncIterableX<TKey, TSource>;

/* These declarations are needed for the closure/umd targets */
export declare namespace Symbol {
Expand Down

0 comments on commit 7127771

Please sign in to comment.