Skip to content

Commit

Permalink
fix(typings): Fix IterableX#concatAll typings to accept IterableX<Ite…
Browse files Browse the repository at this point in the history
…rable<T>> (#25)
  • Loading branch information
trxcllnt authored and mattpodwysocki committed Aug 1, 2017
1 parent f756e53 commit a9343c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/add/iterable-operators/concatAll.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { concatAll } from '../../iterable/concat';
/**
* @ignore
*/
export function concatAllProto<T>(this: IterableX<IterableX<T>>): IterableX<T> {
export function concatAllProto<T>(this: IterableX<Iterable<T>>): IterableX<T> {
return concatAll(this);
}

Expand Down

0 comments on commit a9343c0

Please sign in to comment.