mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
[wu] fix WuIterable.zip generics (#43517)
This commit is contained in:
parent
477a8668a4
commit
6c2ca77f84
7
types/wu/index.d.ts
vendored
7
types/wu/index.d.ts
vendored
@ -107,11 +107,8 @@ declare namespace wu {
|
||||
tap(fn: Consumer<T>): WuIterable<T>;
|
||||
toArray(): T[];
|
||||
unique(): WuIterable<T>;
|
||||
// TODO: this makes no sense, where did the second entry come from?
|
||||
// tslint:disable-next-line no-unnecessary-generics
|
||||
zip<U>(iter2: Iterable<T>): WuIterable<[T, U]>;
|
||||
// tslint:disable-next-line no-unnecessary-generics
|
||||
zipLongest<U>(iter2: Iterable<T>): WuIterable<[T, U]>;
|
||||
zip<U>(iter2: Iterable<U>): WuIterable<[T, U]>;
|
||||
zipLongest<U>(iter2: Iterable<U>): WuIterable<[T, U]>;
|
||||
zipWith: any;
|
||||
unzip: any;
|
||||
tee(n?: number): Array<WuIterable<T>>;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user