@@ -6,7 +6,7 @@ type IsEqualCustomizer = (objValue: any, othValue: any, key?: number | string, o
66type TransformCallback = ( accumulator : any , value : any , key : number | string , collection : any [ ] | Object ) => any ;
77type Callback = ( value : any , key : number | string , collection : any [ ] | Object ) => any ;
88type Iteratee = Callback | Object | any [ ] | string ;
9- type Iterable = any [ ] | Object | string ;
9+ type IterableCollection = any [ ] | Object | string ;
1010type Path = string | string [ ] ;
1111type DebounceOptions = {
1212 leading ?: boolean ;
@@ -292,115 +292,115 @@ declare module 'lodash/zipWith' {
292292// Collection
293293
294294declare module 'lodash/countBy' {
295- declare function exports ( collection : Iterable , iteratee ?: Iteratee ) : Object ;
295+ declare function exports ( collection : IterableCollection , iteratee ?: Iteratee ) : Object ;
296296}
297297
298298declare module 'lodash/each' {
299- declare function exports ( collection : Iterable , iteratee ?: Iteratee ) : Iterable ;
299+ declare function exports ( collection : IterableCollection , iteratee ?: Iteratee ) : IterableCollection ;
300300}
301301
302302declare module 'lodash/eachRight' {
303- declare function exports ( collection : Iterable , iteratee ?: Iteratee ) : Iterable ;
303+ declare function exports ( collection : IterableCollection , iteratee ?: Iteratee ) : IterableCollection ;
304304}
305305
306306declare module 'lodash/every' {
307- declare function exports ( collection : Iterable , iteratee ?: Iteratee ) : boolean ;
307+ declare function exports ( collection : IterableCollection , iteratee ?: Iteratee ) : boolean ;
308308}
309309
310310declare module 'lodash/filter' {
311- declare function exports ( collection : Iterable , iteratee ?: Iteratee ) : any [ ] ;
311+ declare function exports ( collection : IterableCollection , iteratee ?: Iteratee ) : any [ ] ;
312312}
313313
314314declare module 'lodash/find' {
315- declare function exports ( collection : Iterable , iteratee ?: Iteratee , fromIndex ?: number ) : any ;
315+ declare function exports ( collection : IterableCollection , iteratee ?: Iteratee , fromIndex ?: number ) : any ;
316316}
317317
318318declare module 'lodash/findLast' {
319- declare function exports ( collection : Iterable , iteratee ?: Iteratee , fromIndex ?: number ) : any ;
319+ declare function exports ( collection : IterableCollection , iteratee ?: Iteratee , fromIndex ?: number ) : any ;
320320}
321321
322322declare module 'lodash/flatMap' {
323- declare function exports ( collection : Iterable , iteratee ?: Iteratee ) : any [ ] ;
323+ declare function exports ( collection : IterableCollection , iteratee ?: Iteratee ) : any [ ] ;
324324}
325325
326326declare module 'lodash/flatMapDeep' {
327- declare function exports ( collection : Iterable , iteratee ?: Iteratee ) : any [ ] ;
327+ declare function exports ( collection : IterableCollection , iteratee ?: Iteratee ) : any [ ] ;
328328}
329329
330330declare module 'lodash/flatMapDepth' {
331- declare function exports ( collection : Iterable , iteratee ?: Iteratee , depth ?: number ) : any [ ] ;
331+ declare function exports ( collection : IterableCollection , iteratee ?: Iteratee , depth ?: number ) : any [ ] ;
332332}
333333
334334declare module 'lodash/forEach' {
335- declare function exports ( collection : Iterable , iteratee ?: Iteratee ) : Iterable ;
335+ declare function exports ( collection : IterableCollection , iteratee ?: Iteratee ) : IterableCollection ;
336336}
337337
338338declare module 'lodash/forEachRight' {
339- declare function exports ( collection : Iterable , iteratee ?: Iteratee ) : Iterable ;
339+ declare function exports ( collection : IterableCollection , iteratee ?: Iteratee ) : IterableCollection ;
340340}
341341
342342declare module 'lodash/groupBy' {
343- declare function exports ( collection : Iterable , iteratee ?: Iteratee ) : Object ;
343+ declare function exports ( collection : IterableCollection , iteratee ?: Iteratee ) : Object ;
344344}
345345
346346declare module 'lodash/includes' {
347- declare function exports ( collection : Iterable , value : any , fromIndex ?: number ) : boolean ;
347+ declare function exports ( collection : IterableCollection , value : any , fromIndex ?: number ) : boolean ;
348348}
349349
350350declare module 'lodash/invokeMap' {
351- declare function exports ( collection : Iterable , path : Path | Function , ...args : any [ ] ) : any [ ] ;
351+ declare function exports ( collection : IterableCollection , path : Path | Function , ...args : any [ ] ) : any [ ] ;
352352}
353353
354354declare module 'lodash/keyBy' {
355- declare function exports ( collection : Iterable , iteratee ?: Iteratee ) : Object ;
355+ declare function exports ( collection : IterableCollection , iteratee ?: Iteratee ) : Object ;
356356}
357357
358358declare module 'lodash/map' {
359- declare function exports ( collection : Iterable , iteratee ?: Iteratee ) : any [ ] ;
359+ declare function exports ( collection : IterableCollection , iteratee ?: Iteratee ) : any [ ] ;
360360}
361361
362362declare module 'lodash/orderBy' {
363- declare function exports ( collection : Iterable , iteratees ?: Iteratee [ ] , orders ?: string [ ] ) : any [ ] ;
363+ declare function exports ( collection : IterableCollection , iteratees ?: Iteratee [ ] , orders ?: string [ ] ) : any [ ] ;
364364}
365365
366366declare module 'lodash/partition' {
367- declare function exports ( collection : Iterable , iteratee ?: Iteratee ) : any [ ] ;
367+ declare function exports ( collection : IterableCollection , iteratee ?: Iteratee ) : any [ ] ;
368368}
369369
370370declare module 'lodash/reduce' {
371- declare function exports ( collection : Iterable , iteratee ?: TransformCallback , accumulator ?: any ) : any ;
371+ declare function exports ( collection : IterableCollection , iteratee ?: TransformCallback , accumulator ?: any ) : any ;
372372}
373373
374374declare module 'lodash/reduceRight' {
375- declare function exports ( collection : Iterable , iteratee ?: TransformCallback , accumulator ?: any ) : any ;
375+ declare function exports ( collection : IterableCollection , iteratee ?: TransformCallback , accumulator ?: any ) : any ;
376376}
377377
378378declare module 'lodash/reject' {
379- declare function exports ( collection : Iterable , iteratee ?: Iteratee ) : any [ ] ;
379+ declare function exports ( collection : IterableCollection , iteratee ?: Iteratee ) : any [ ] ;
380380}
381381
382382declare module 'lodash/sample' {
383- declare function exports ( collection : Iterable ) : any ;
383+ declare function exports ( collection : IterableCollection ) : any ;
384384}
385385
386386declare module 'lodash/sampleSize' {
387- declare function exports ( collection : Iterable , n ?: number ) : any [ ] ;
387+ declare function exports ( collection : IterableCollection , n ?: number ) : any [ ] ;
388388}
389389
390390declare module 'lodash/shuffle' {
391- declare function exports ( collection : Iterable ) : any [ ] ;
391+ declare function exports ( collection : IterableCollection ) : any [ ] ;
392392}
393393
394394declare module 'lodash/size' {
395- declare function exports ( collection : Iterable ) : number ;
395+ declare function exports ( collection : IterableCollection ) : number ;
396396}
397397
398398declare module 'lodash/some' {
399- declare function exports ( collection : Iterable , iteratee ?: Iteratee ) : boolean ;
399+ declare function exports ( collection : IterableCollection , iteratee ?: Iteratee ) : boolean ;
400400}
401401
402402declare module 'lodash/sortBy' {
403- declare function exports ( collection : Iterable , iteratees ?: Iteratee [ ] ) : any [ ] ;
403+ declare function exports ( collection : IterableCollection , iteratees ?: Iteratee [ ] ) : any [ ] ;
404404}
405405
406406// Date
@@ -836,11 +836,11 @@ declare module 'lodash/defaultsDeep' {
836836}
837837
838838declare module 'lodash/entries' {
839- declare function exports ( collection : Iterable ) : any [ ] ;
839+ declare function exports ( collection : IterableCollection ) : any [ ] ;
840840}
841841
842842declare module 'lodash/entriesIn' {
843- declare function exports ( collection : Iterable ) : any [ ] ;
843+ declare function exports ( collection : IterableCollection ) : any [ ] ;
844844}
845845
846846declare module 'lodash/extend' {
@@ -908,11 +908,11 @@ declare module 'lodash/invoke' {
908908}
909909
910910declare module 'lodash/keys' {
911- declare function exports ( collection : Iterable ) : Array < number | string > ;
911+ declare function exports ( collection : IterableCollection ) : Array < number | string > ;
912912}
913913
914914declare module 'lodash/keysIn' {
915- declare function exports ( collection : Iterable ) : Array < number | string > ;
915+ declare function exports ( collection : IterableCollection ) : Array < number | string > ;
916916}
917917
918918declare module 'lodash/mapKeys' {
@@ -968,7 +968,7 @@ declare module 'lodash/toPairsIn' {
968968}
969969
970970declare module 'lodash/transform' {
971- declare function exports ( collection : Iterable , iteratee ?: TransformCallback , accumulator ?: any ) : any ;
971+ declare function exports ( collection : IterableCollection , iteratee ?: TransformCallback , accumulator ?: any ) : any ;
972972}
973973
974974declare module 'lodash/unset' {
0 commit comments