Skip to content

Commit

Permalink
fix(compile): adding some missing exports to deal with typescript 2.7…
Browse files Browse the repository at this point in the history
….x compat issue

resolves #214
  • Loading branch information
Pat Sissons committed Feb 5, 2018
1 parent b30ec85 commit 0b0c837
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/asynciterable/concat.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ export function concat<T, T2, T3, T4, T5, T6>(
v5: AsyncIterable<T5>,
v6: AsyncIterable<T6>
): AsyncIterable<T | T2 | T3 | T4 | T5 | T6>;
export function concat<T>(source: AsyncIterable<T>, ...args: AsyncIterable<T>[]): AsyncIterableX<T>;
/* tslint:enable:max-line-length */

export function concat<T>(
Expand Down
1 change: 1 addition & 0 deletions src/asynciterable/merge.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ export function merge<T, T2, T3, T4, T5, T6>(
v5: AsyncIterable<T5>,
v6: AsyncIterable<T6>
): AsyncIterable<T | T2 | T3 | T4 | T5 | T6>;
export function merge<T>(source: AsyncIterable<T>, ...args: AsyncIterable<T>[]): AsyncIterableX<T>;
/* tslint:enable:max-line-length */

export function merge<T>(source: AsyncIterable<T>, ...args: AsyncIterable<T>[]): AsyncIterableX<T> {
Expand Down
1 change: 1 addition & 0 deletions src/iterable/concat.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ export function concat<T, T2, T3, T4, T5, T6>(
v5: Iterable<T5>,
v6: Iterable<T6>
): Iterable<T | T2 | T3 | T4 | T5 | T6>;
export function concat<T>(source: Iterable<T>, ...args: Iterable<T>[]): IterableX<T>;
/* tslint:enable:max-line-length */

export function concat<T>(source: Iterable<T>, ...args: Iterable<T>[]): IterableX<T> {
Expand Down

0 comments on commit 0b0c837

Please sign in to comment.