@types/lodash 4.14.200 → 4.14.202

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
lodash/README.md CHANGED
@@ -8,7 +8,7 @@ This package contains type definitions for lodash (https://lodash.com).
8
8
  Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/lodash.
9
9
 
10
10
  ### Additional Details
11
- * Last updated: Wed, 18 Oct 2023 05:47:07 GMT
11
+ * Last updated: Mon, 20 Nov 2023 23:36:24 GMT
12
12
  * Dependencies: none
13
13
 
14
14
  # Credits
lodash/common/common.d.ts CHANGED
@@ -4,7 +4,7 @@ type GlobalPartial<T> = Partial<T>;
4
4
  declare module "../index" {
5
5
  type Omit<T, K extends keyof any> = Pick<T, Exclude<keyof T, K>>;
6
6
  type PartialObject<T> = GlobalPartial<T>;
7
- type Many<T> = T | ReadonlyArray<T>;
7
+ type Many<T> = T | readonly T[];
8
8
  type ImpChain<T> =
9
9
  T extends { __trapAny: any } ? Collection<any> & Function<any> & Object<any> & Primitive<any> & String :
10
10
  T extends null | undefined ? never :
lodash/common/object.d.ts CHANGED
@@ -2324,7 +2324,7 @@ declare module "../index" {
2324
2324
  * @param accumulator The custom accumulator value.
2325
2325
  * @return Returns the accumulated value.
2326
2326
  */
2327
- transform<T, TResult>(object: ReadonlyArray<T>, iteratee: MemoVoidArrayIterator<T, TResult>, accumulator?: TResult): TResult;
2327
+ transform<T, TResult>(object: readonly T[], iteratee: MemoVoidArrayIterator<T, TResult>, accumulator?: TResult): TResult;
2328
2328
  /**
2329
2329
  * @see _.transform
2330
2330
  */
lodash/fp.d.ts CHANGED
@@ -66,14 +66,14 @@ declare namespace _ {
66
66
  <TObject, TSource1, TSource2, TSource3>(object: [TObject, TSource1, TSource2, TSource3]): TObject & TSource1 & TSource2 & TSource3;
67
67
  <TObject, TSource1, TSource2, TSource3, TSource4>(object: [TObject, TSource1, TSource2, TSource3, TSource4]): TObject & TSource1 & TSource2 & TSource3 & TSource4;
68
68
  <TObject>(object: [TObject]): TObject;
69
- (object: ReadonlyArray<any>): any;
69
+ (object: readonly any[]): any;
70
70
  }
71
71
  interface LodashAssignAllWith {
72
72
  (customizer: lodash.AssignCustomizer): LodashAssignAllWith1x1;
73
- (customizer: lodash.__, args: ReadonlyArray<any>): LodashAssignAllWith1x2;
74
- (customizer: lodash.AssignCustomizer, args: ReadonlyArray<any>): any;
73
+ (customizer: lodash.__, args: readonly any[]): LodashAssignAllWith1x2;
74
+ (customizer: lodash.AssignCustomizer, args: readonly any[]): any;
75
75
  }
76
- type LodashAssignAllWith1x1 = (args: ReadonlyArray<any>) => any;
76
+ type LodashAssignAllWith1x1 = (args: readonly any[]) => any;
77
77
  type LodashAssignAllWith1x2 = (customizer: lodash.AssignCustomizer) => any;
78
78
  interface LodashAssignIn {
79
79
  <TObject>(object: TObject): LodashAssignIn1x1<TObject>;
@@ -88,14 +88,14 @@ declare namespace _ {
88
88
  <TObject, TSource1, TSource2, TSource3>(object: [TObject, TSource1, TSource2, TSource3]): TObject & TSource1 & TSource2 & TSource3;
89
89
  <TObject, TSource1, TSource2, TSource3, TSource4>(object: [TObject, TSource1, TSource2, TSource3, TSource4]): TObject & TSource1 & TSource2 & TSource3 & TSource4;
90
90
  <TObject>(object: [TObject]): TObject;
91
- <TResult>(object: ReadonlyArray<any>): TResult;
91
+ <TResult>(object: readonly any[]): TResult;
92
92
  }
93
93
  interface LodashAssignInAllWith {
94
94
  (customizer: lodash.AssignCustomizer): LodashAssignInAllWith1x1;
95
- (customizer: lodash.__, args: ReadonlyArray<any>): LodashAssignInAllWith1x2;
96
- (customizer: lodash.AssignCustomizer, args: ReadonlyArray<any>): any;
95
+ (customizer: lodash.__, args: readonly any[]): LodashAssignInAllWith1x2;
96
+ (customizer: lodash.AssignCustomizer, args: readonly any[]): any;
97
97
  }
98
- type LodashAssignInAllWith1x1 = (args: ReadonlyArray<any>) => any;
98
+ type LodashAssignInAllWith1x1 = (args: readonly any[]) => any;
99
99
  type LodashAssignInAllWith1x2 = (customizer: lodash.AssignCustomizer) => any;
100
100
  interface LodashAssignInWith {
101
101
  (customizer: lodash.AssignCustomizer): LodashAssignInWith1x1;
@@ -445,7 +445,7 @@ declare namespace _ {
445
445
  <TObject, TSource1, TSource2, TSource3>(object: [TObject, TSource1, TSource2, TSource3]): TSource3 & TSource2 & TSource1 & TObject;
446
446
  <TObject, TSource1, TSource2, TSource3, TSource4>(object: [TObject, TSource1, TSource2, TSource3, TSource4]): TSource4 & TSource3 & TSource2 & TSource1 & TObject;
447
447
  <TObject>(object: [TObject]): TObject;
448
- (object: ReadonlyArray<any>): any;
448
+ (object: readonly any[]): any;
449
449
  }
450
450
  interface LodashDefaultsDeep {
451
451
  (sources: any): LodashDefaultsDeep1x1;
@@ -454,7 +454,7 @@ declare namespace _ {
454
454
  }
455
455
  type LodashDefaultsDeep1x1 = (object: any) => any;
456
456
  type LodashDefaultsDeep1x2 = (sources: any) => any;
457
- type LodashDefaultsDeepAll = (object: ReadonlyArray<any>) => any;
457
+ type LodashDefaultsDeepAll = (object: readonly any[]) => any;
458
458
  interface LodashDefaultTo {
459
459
  <T>(defaultValue: T): LodashDefaultTo1x1<T>;
460
460
  <T>(defaultValue: lodash.__, value: T | null | undefined): LodashDefaultTo1x2<T>;
@@ -581,8 +581,8 @@ declare namespace _ {
581
581
  type LodashDropWhile1x2<T> = (predicate: lodash.ValueIteratee<T>) => T[];
582
582
  interface LodashForEach {
583
583
  <T>(iteratee: (value: T) => any): LodashForEach1x1<T>;
584
- <T>(iteratee: lodash.__, collection: ReadonlyArray<T>): LodashForEach1x2<T>;
585
- <T>(iteratee: (value: T) => any, collection: ReadonlyArray<T>): T[];
584
+ <T>(iteratee: lodash.__, collection: readonly T[]): LodashForEach1x2<T>;
585
+ <T>(iteratee: (value: T) => any, collection: readonly T[]): T[];
586
586
  <T>(iteratee: lodash.__, collection: lodash.List<T>): LodashForEach2x2<T>;
587
587
  <T>(iteratee: (value: T) => any, collection: lodash.List<T>): lodash.List<T>;
588
588
  <T extends object>(iteratee: lodash.__, collection: T): LodashForEach3x2<T>;
@@ -595,7 +595,7 @@ declare namespace _ {
595
595
  <T extends object>(iteratee: (value: T[keyof T]) => any, collection: T | null | undefined): T | null | undefined;
596
596
  }
597
597
  interface LodashForEach1x1<T> {
598
- (collection: ReadonlyArray<T>): T[];
598
+ (collection: readonly T[]): T[];
599
599
  (collection: lodash.List<T>): lodash.List<T>;
600
600
  <T1 extends object>(collection: T1): T1;
601
601
  <TArray extends T[] | null | undefined>(collection: TArray & (T[] | null | undefined)): TArray;
@@ -610,8 +610,8 @@ declare namespace _ {
610
610
  type LodashForEach6x2<T> = (iteratee: (value: T[keyof T]) => any) => T | null | undefined;
611
611
  interface LodashForEachRight {
612
612
  <T>(iteratee: (value: T) => any): LodashForEachRight1x1<T>;
613
- <T>(iteratee: lodash.__, collection: ReadonlyArray<T>): LodashForEachRight1x2<T>;
614
- <T>(iteratee: (value: T) => any, collection: ReadonlyArray<T>): T[];
613
+ <T>(iteratee: lodash.__, collection: readonly T[]): LodashForEachRight1x2<T>;
614
+ <T>(iteratee: (value: T) => any, collection: readonly T[]): T[];
615
615
  <T>(iteratee: lodash.__, collection: lodash.List<T>): LodashForEachRight2x2<T>;
616
616
  <T>(iteratee: (value: T) => any, collection: lodash.List<T>): lodash.List<T>;
617
617
  <T extends object>(iteratee: lodash.__, collection: T): LodashForEachRight3x2<T>;
@@ -624,7 +624,7 @@ declare namespace _ {
624
624
  <T extends object>(iteratee: (value: T[keyof T]) => any, collection: T | null | undefined): T | null | undefined;
625
625
  }
626
626
  interface LodashForEachRight1x1<T> {
627
- (collection: ReadonlyArray<T>): T[];
627
+ (collection: readonly T[]): T[];
628
628
  (collection: lodash.List<T>): lodash.List<T>;
629
629
  <T1 extends object>(collection: T1): T1;
630
630
  <TArray extends T[] | null | undefined>(collection: TArray & (T[] | null | undefined)): TArray;
@@ -681,14 +681,14 @@ declare namespace _ {
681
681
  <TObject, TSource1, TSource2, TSource3>(object: [TObject, TSource1, TSource2, TSource3]): TObject & TSource1 & TSource2 & TSource3;
682
682
  <TObject, TSource1, TSource2, TSource3, TSource4>(object: [TObject, TSource1, TSource2, TSource3, TSource4]): TObject & TSource1 & TSource2 & TSource3 & TSource4;
683
683
  <TObject>(object: [TObject]): TObject;
684
- <TResult>(object: ReadonlyArray<any>): TResult;
684
+ <TResult>(object: readonly any[]): TResult;
685
685
  }
686
686
  interface LodashExtendAllWith {
687
687
  (customizer: lodash.AssignCustomizer): LodashExtendAllWith1x1;
688
- (customizer: lodash.__, args: ReadonlyArray<any>): LodashExtendAllWith1x2;
689
- (customizer: lodash.AssignCustomizer, args: ReadonlyArray<any>): any;
688
+ (customizer: lodash.__, args: readonly any[]): LodashExtendAllWith1x2;
689
+ (customizer: lodash.AssignCustomizer, args: readonly any[]): any;
690
690
  }
691
- type LodashExtendAllWith1x1 = (args: ReadonlyArray<any>) => any;
691
+ type LodashExtendAllWith1x1 = (args: readonly any[]) => any;
692
692
  type LodashExtendAllWith1x2 = (customizer: lodash.AssignCustomizer) => any;
693
693
  interface LodashExtendWith {
694
694
  (customizer: lodash.AssignCustomizer): LodashExtendWith1x1;
@@ -1822,17 +1822,17 @@ declare namespace _ {
1822
1822
  type LodashInvoke1x2 = (path: lodash.PropertyPath) => any;
1823
1823
  interface LodashInvokeArgs {
1824
1824
  (path: lodash.PropertyPath): LodashInvokeArgs1x1;
1825
- (path: lodash.__, args: ReadonlyArray<any>): LodashInvokeArgs1x2;
1826
- (path: lodash.PropertyPath, args: ReadonlyArray<any>): LodashInvokeArgs1x3;
1825
+ (path: lodash.__, args: readonly any[]): LodashInvokeArgs1x2;
1826
+ (path: lodash.PropertyPath, args: readonly any[]): LodashInvokeArgs1x3;
1827
1827
  (path: lodash.__, args: lodash.__, object: any): LodashInvokeArgs1x4;
1828
1828
  (path: lodash.PropertyPath, args: lodash.__, object: any): LodashInvokeArgs1x5;
1829
- (path: lodash.__, args: ReadonlyArray<any>, object: any): LodashInvokeArgs1x6;
1830
- (path: lodash.PropertyPath, args: ReadonlyArray<any>, object: any): any;
1829
+ (path: lodash.__, args: readonly any[], object: any): LodashInvokeArgs1x6;
1830
+ (path: lodash.PropertyPath, args: readonly any[], object: any): any;
1831
1831
  }
1832
1832
  interface LodashInvokeArgs1x1 {
1833
- (args: ReadonlyArray<any>): LodashInvokeArgs1x3;
1833
+ (args: readonly any[]): LodashInvokeArgs1x3;
1834
1834
  (args: lodash.__, object: any): LodashInvokeArgs1x5;
1835
- (args: ReadonlyArray<any>, object: any): any;
1835
+ (args: readonly any[], object: any): any;
1836
1836
  }
1837
1837
  interface LodashInvokeArgs1x2 {
1838
1838
  (path: lodash.PropertyPath): LodashInvokeArgs1x3;
@@ -1842,28 +1842,28 @@ declare namespace _ {
1842
1842
  type LodashInvokeArgs1x3 = (object: any) => any;
1843
1843
  interface LodashInvokeArgs1x4 {
1844
1844
  (path: lodash.PropertyPath): LodashInvokeArgs1x5;
1845
- (path: lodash.__, args: ReadonlyArray<any>): LodashInvokeArgs1x6;
1846
- (path: lodash.PropertyPath, args: ReadonlyArray<any>): any;
1845
+ (path: lodash.__, args: readonly any[]): LodashInvokeArgs1x6;
1846
+ (path: lodash.PropertyPath, args: readonly any[]): any;
1847
1847
  }
1848
- type LodashInvokeArgs1x5 = (args: ReadonlyArray<any>) => any;
1848
+ type LodashInvokeArgs1x5 = (args: readonly any[]) => any;
1849
1849
  type LodashInvokeArgs1x6 = (path: lodash.PropertyPath) => any;
1850
1850
  interface LodashInvokeArgsMap {
1851
1851
  (methodName: string): LodashInvokeArgsMap1x1;
1852
- (methodNameOrMethod: lodash.__, args: ReadonlyArray<any>): LodashInvokeArgsMap1x2;
1853
- (methodName: string, args: ReadonlyArray<any>): LodashInvokeArgsMap1x3;
1852
+ (methodNameOrMethod: lodash.__, args: readonly any[]): LodashInvokeArgsMap1x2;
1853
+ (methodName: string, args: readonly any[]): LodashInvokeArgsMap1x3;
1854
1854
  (methodNameOrMethod: lodash.__, args: lodash.__, collection: object | null | undefined): LodashInvokeArgsMap1x4;
1855
1855
  (methodName: string, args: lodash.__, collection: object | null | undefined): LodashInvokeArgsMap1x5;
1856
- (methodNameOrMethod: lodash.__, args: ReadonlyArray<any>, collection: object | null | undefined): LodashInvokeArgsMap1x6;
1857
- (methodName: string, args: ReadonlyArray<any>, collection: object | null | undefined): any[];
1856
+ (methodNameOrMethod: lodash.__, args: readonly any[], collection: object | null | undefined): LodashInvokeArgsMap1x6;
1857
+ (methodName: string, args: readonly any[], collection: object | null | undefined): any[];
1858
1858
  <TResult>(method: (...args: any[]) => TResult): LodashInvokeArgsMap2x1<TResult>;
1859
- <TResult>(method: (...args: any[]) => TResult, args: ReadonlyArray<any>): LodashInvokeArgsMap2x3<TResult>;
1859
+ <TResult>(method: (...args: any[]) => TResult, args: readonly any[]): LodashInvokeArgsMap2x3<TResult>;
1860
1860
  <TResult>(method: (...args: any[]) => TResult, args: lodash.__, collection: object | null | undefined): LodashInvokeArgsMap2x5<TResult>;
1861
- <TResult>(method: (...args: any[]) => TResult, args: ReadonlyArray<any>, collection: object | null | undefined): TResult[];
1861
+ <TResult>(method: (...args: any[]) => TResult, args: readonly any[], collection: object | null | undefined): TResult[];
1862
1862
  }
1863
1863
  interface LodashInvokeArgsMap1x1 {
1864
- (args: ReadonlyArray<any>): LodashInvokeArgsMap1x3;
1864
+ (args: readonly any[]): LodashInvokeArgsMap1x3;
1865
1865
  (args: lodash.__, collection: object | null | undefined): LodashInvokeArgsMap1x5;
1866
- (args: ReadonlyArray<any>, collection: object | null | undefined): any[];
1866
+ (args: readonly any[], collection: object | null | undefined): any[];
1867
1867
  }
1868
1868
  interface LodashInvokeArgsMap1x2 {
1869
1869
  (methodName: string): LodashInvokeArgsMap1x3;
@@ -1875,23 +1875,23 @@ declare namespace _ {
1875
1875
  type LodashInvokeArgsMap1x3 = (collection: object | null | undefined) => any[];
1876
1876
  interface LodashInvokeArgsMap1x4 {
1877
1877
  (methodName: string): LodashInvokeArgsMap1x5;
1878
- (methodNameOrMethod: lodash.__, args: ReadonlyArray<any>): LodashInvokeArgsMap1x6;
1879
- (methodName: string, args: ReadonlyArray<any>): any[];
1878
+ (methodNameOrMethod: lodash.__, args: readonly any[]): LodashInvokeArgsMap1x6;
1879
+ (methodName: string, args: readonly any[]): any[];
1880
1880
  <TResult>(method: (...args: any[]) => TResult): LodashInvokeArgsMap2x5<TResult>;
1881
- <TResult>(method: (...args: any[]) => TResult, args: ReadonlyArray<any>): TResult[];
1881
+ <TResult>(method: (...args: any[]) => TResult, args: readonly any[]): TResult[];
1882
1882
  }
1883
- type LodashInvokeArgsMap1x5 = (args: ReadonlyArray<any>) => any[];
1883
+ type LodashInvokeArgsMap1x5 = (args: readonly any[]) => any[];
1884
1884
  interface LodashInvokeArgsMap1x6 {
1885
1885
  (methodName: string): any[];
1886
1886
  <TResult>(method: (...args: any[]) => TResult): TResult[];
1887
1887
  }
1888
1888
  interface LodashInvokeArgsMap2x1<TResult> {
1889
- (args: ReadonlyArray<any>): LodashInvokeArgsMap2x3<TResult>;
1889
+ (args: readonly any[]): LodashInvokeArgsMap2x3<TResult>;
1890
1890
  (args: lodash.__, collection: object | null | undefined): LodashInvokeArgsMap2x5<TResult>;
1891
- (args: ReadonlyArray<any>, collection: object | null | undefined): TResult[];
1891
+ (args: readonly any[], collection: object | null | undefined): TResult[];
1892
1892
  }
1893
1893
  type LodashInvokeArgsMap2x3<TResult> = (collection: object | null | undefined) => TResult[];
1894
- type LodashInvokeArgsMap2x5<TResult> = (args: ReadonlyArray<any>) => TResult[];
1894
+ type LodashInvokeArgsMap2x5<TResult> = (args: readonly any[]) => TResult[];
1895
1895
  interface LodashInvokeMap {
1896
1896
  (methodName: string): LodashInvokeMap1x1;
1897
1897
  (methodNameOrMethod: lodash.__, collection: object | null | undefined): LodashInvokeMap1x2;
@@ -1926,7 +1926,7 @@ declare namespace _ {
1926
1926
  <T extends { __trapAny: any }>(value: T): boolean;
1927
1927
  (value: string | null | undefined): value is '' | null | undefined;
1928
1928
  (value: any[] | null | undefined): boolean;
1929
- (value: ReadonlyArray<any> | null | undefined): value is Readonly<[]> | null | undefined;
1929
+ (value: readonly any[] | null | undefined): value is Readonly<[]> | null | undefined;
1930
1930
  (value: Map<any, any> | Set<any> | lodash.List<any> | null | undefined): boolean;
1931
1931
  <T extends object>(value: T | null | undefined): value is lodash.EmptyObjectOf<T> | null | undefined;
1932
1932
  (value?: any): boolean;
@@ -2196,14 +2196,14 @@ declare namespace _ {
2196
2196
  <TObject, TSource1, TSource2>(object: [TObject, TSource1, TSource2]): TObject & TSource1 & TSource2;
2197
2197
  <TObject, TSource1, TSource2, TSource3>(object: [TObject, TSource1, TSource2, TSource3]): TObject & TSource1 & TSource2 & TSource3;
2198
2198
  <TObject, TSource1, TSource2, TSource3, TSource4>(object: [TObject, TSource1, TSource2, TSource3, TSource4]): TObject & TSource1 & TSource2 & TSource3 & TSource4;
2199
- (object: ReadonlyArray<any>): any;
2199
+ (object: readonly any[]): any;
2200
2200
  }
2201
2201
  interface LodashMergeAllWith {
2202
2202
  (customizer: lodash.MergeWithCustomizer): LodashMergeAllWith1x1;
2203
- (customizer: lodash.__, args: ReadonlyArray<any>): LodashMergeAllWith1x2;
2204
- (customizer: lodash.MergeWithCustomizer, args: ReadonlyArray<any>): any;
2203
+ (customizer: lodash.__, args: readonly any[]): LodashMergeAllWith1x2;
2204
+ (customizer: lodash.MergeWithCustomizer, args: readonly any[]): any;
2205
2205
  }
2206
- type LodashMergeAllWith1x1 = (args: ReadonlyArray<any>) => any;
2206
+ type LodashMergeAllWith1x1 = (args: readonly any[]) => any;
2207
2207
  type LodashMergeAllWith1x2 = (customizer: lodash.MergeWithCustomizer) => any;
2208
2208
  interface LodashMergeWith {
2209
2209
  (customizer: lodash.MergeWithCustomizer): LodashMergeWith1x1;
@@ -2630,8 +2630,8 @@ declare namespace _ {
2630
2630
  <T1, T2, T3, T4>(func: lodash.__, arg1: [T1, T2, T3, T4]): LodashPartialRight26x2<T1, T2, T3, T4>;
2631
2631
  <T1, T2, T3, T4, R>(func: lodash.Function4<T1, T2, T3, T4, R>, arg1: [T1, T2, T3, T4]): lodash.Function0<R>;
2632
2632
  (func: (...args: any[]) => any): LodashPartialRight27x1;
2633
- (func: lodash.__, args: ReadonlyArray<any>): LodashPartialRight27x2;
2634
- (func: (...args: any[]) => any, args: ReadonlyArray<any>): (...args: any[]) => any;
2633
+ (func: lodash.__, args: readonly any[]): LodashPartialRight27x2;
2634
+ (func: (...args: any[]) => any, args: readonly any[]): (...args: any[]) => any;
2635
2635
  placeholder: lodash.__;
2636
2636
  }
2637
2637
  type LodashPartialRight1x1<T1, R> = (arg1: [T1]) => lodash.Function0<R>;
@@ -2692,7 +2692,7 @@ declare namespace _ {
2692
2692
  type LodashPartialRight24x2<T1, T3, T4> = <T2, R>(func: lodash.Function4<T1, T2, T3, T4, R>) => lodash.Function1<T2, R>;
2693
2693
  type LodashPartialRight25x2<T2, T3, T4> = <T1, R>(func: lodash.Function4<T1, T2, T3, T4, R>) => lodash.Function1<T1, R>;
2694
2694
  type LodashPartialRight26x2<T1, T2, T3, T4> = <R>(func: lodash.Function4<T1, T2, T3, T4, R>) => lodash.Function0<R>;
2695
- type LodashPartialRight27x1 = (args: ReadonlyArray<any>) => (...args: any[]) => any;
2695
+ type LodashPartialRight27x1 = (args: readonly any[]) => (...args: any[]) => any;
2696
2696
  type LodashPartialRight27x2 = (func: (...args: any[]) => any) => (...args: any[]) => any;
2697
2697
  interface LodashPartition {
2698
2698
  <T, U extends T>(callback: lodash.ValueIteratorTypeGuard<T, U>): LodashPartition1x1<T, U>;
@@ -3304,26 +3304,26 @@ declare namespace _ {
3304
3304
  type LodashPropOr7x6 = (defaultValue: any) => any;
3305
3305
  interface LodashPull {
3306
3306
  <T>(values: T): LodashPull1x1<T>;
3307
- <T>(values: lodash.__, array: ReadonlyArray<T>): LodashPull1x2<T>;
3308
- <T>(values: T, array: ReadonlyArray<T>): T[];
3307
+ <T>(values: lodash.__, array: readonly T[]): LodashPull1x2<T>;
3308
+ <T>(values: T, array: readonly T[]): T[];
3309
3309
  <T>(values: lodash.__, array: lodash.List<T>): LodashPull2x2<T>;
3310
3310
  <T>(values: T, array: lodash.List<T>): lodash.List<T>;
3311
3311
  }
3312
3312
  interface LodashPull1x1<T> {
3313
- (array: ReadonlyArray<T>): T[];
3313
+ (array: readonly T[]): T[];
3314
3314
  (array: lodash.List<T>): lodash.List<T>;
3315
3315
  }
3316
3316
  type LodashPull1x2<T> = (values: T) => T[];
3317
3317
  type LodashPull2x2<T> = (values: T) => lodash.List<T>;
3318
3318
  interface LodashPullAll {
3319
3319
  <T>(values: lodash.List<T>): LodashPullAll1x1<T>;
3320
- <T>(values: lodash.__, array: ReadonlyArray<T>): LodashPullAll1x2<T>;
3321
- <T>(values: lodash.List<T>, array: ReadonlyArray<T>): T[];
3320
+ <T>(values: lodash.__, array: readonly T[]): LodashPullAll1x2<T>;
3321
+ <T>(values: lodash.List<T>, array: readonly T[]): T[];
3322
3322
  <T>(values: lodash.__, array: lodash.List<T>): LodashPullAll2x2<T>;
3323
3323
  <T>(values: lodash.List<T>, array: lodash.List<T>): lodash.List<T>;
3324
3324
  }
3325
3325
  interface LodashPullAll1x1<T> {
3326
- (array: ReadonlyArray<T>): T[];
3326
+ (array: readonly T[]): T[];
3327
3327
  (array: lodash.List<T>): lodash.List<T>;
3328
3328
  }
3329
3329
  type LodashPullAll1x2<T> = (values: lodash.List<T>) => T[];
@@ -3332,10 +3332,10 @@ declare namespace _ {
3332
3332
  <T>(iteratee: lodash.ValueIteratee<T>): LodashPullAllBy1x1<T>;
3333
3333
  <T>(iteratee: lodash.__, values: lodash.List<T>): LodashPullAllBy1x2<T>;
3334
3334
  <T>(iteratee: lodash.ValueIteratee<T>, values: lodash.List<T>): LodashPullAllBy1x3<T>;
3335
- <T>(iteratee: lodash.__, values: lodash.__, array: ReadonlyArray<T>): LodashPullAllBy1x4<T>;
3336
- <T>(iteratee: lodash.ValueIteratee<T>, values: lodash.__, array: ReadonlyArray<T>): LodashPullAllBy1x5<T>;
3337
- <T>(iteratee: lodash.__, values: lodash.List<T>, array: ReadonlyArray<T>): LodashPullAllBy1x6<T>;
3338
- <T>(iteratee: lodash.ValueIteratee<T>, values: lodash.List<T>, array: ReadonlyArray<T>): T[];
3335
+ <T>(iteratee: lodash.__, values: lodash.__, array: readonly T[]): LodashPullAllBy1x4<T>;
3336
+ <T>(iteratee: lodash.ValueIteratee<T>, values: lodash.__, array: readonly T[]): LodashPullAllBy1x5<T>;
3337
+ <T>(iteratee: lodash.__, values: lodash.List<T>, array: readonly T[]): LodashPullAllBy1x6<T>;
3338
+ <T>(iteratee: lodash.ValueIteratee<T>, values: lodash.List<T>, array: readonly T[]): T[];
3339
3339
  <T>(iteratee: lodash.__, values: lodash.__, array: lodash.List<T>): LodashPullAllBy2x4<T>;
3340
3340
  <T>(iteratee: lodash.ValueIteratee<T>, values: lodash.__, array: lodash.List<T>): LodashPullAllBy2x5<T>;
3341
3341
  <T>(iteratee: lodash.__, values: lodash.List<T>, array: lodash.List<T>): LodashPullAllBy2x6<T>;
@@ -3343,10 +3343,10 @@ declare namespace _ {
3343
3343
  <T1, T2>(iteratee: lodash.ValueIteratee<T1 | T2>): LodashPullAllBy3x1<T1, T2>;
3344
3344
  <T2>(iteratee: lodash.__, values: lodash.List<T2>): LodashPullAllBy3x2<T2>;
3345
3345
  <T1, T2>(iteratee: lodash.ValueIteratee<T1 | T2>, values: lodash.List<T2>): LodashPullAllBy3x3<T1>;
3346
- <T1>(iteratee: lodash.__, values: lodash.__, array: ReadonlyArray<T1>): LodashPullAllBy3x4<T1>;
3347
- <T1, T2>(iteratee: lodash.ValueIteratee<T1 | T2>, values: lodash.__, array: ReadonlyArray<T1>): LodashPullAllBy3x5<T1, T2>;
3348
- <T1, T2>(iteratee: lodash.__, values: lodash.List<T2>, array: ReadonlyArray<T1>): LodashPullAllBy3x6<T1, T2>;
3349
- <T1, T2>(iteratee: lodash.ValueIteratee<T1 | T2>, values: lodash.List<T2>, array: ReadonlyArray<T1>): T1[];
3346
+ <T1>(iteratee: lodash.__, values: lodash.__, array: readonly T1[]): LodashPullAllBy3x4<T1>;
3347
+ <T1, T2>(iteratee: lodash.ValueIteratee<T1 | T2>, values: lodash.__, array: readonly T1[]): LodashPullAllBy3x5<T1, T2>;
3348
+ <T1, T2>(iteratee: lodash.__, values: lodash.List<T2>, array: readonly T1[]): LodashPullAllBy3x6<T1, T2>;
3349
+ <T1, T2>(iteratee: lodash.ValueIteratee<T1 | T2>, values: lodash.List<T2>, array: readonly T1[]): T1[];
3350
3350
  <T1>(iteratee: lodash.__, values: lodash.__, array: lodash.List<T1>): LodashPullAllBy4x4<T1>;
3351
3351
  <T1, T2>(iteratee: lodash.ValueIteratee<T1 | T2>, values: lodash.__, array: lodash.List<T1>): LodashPullAllBy4x5<T1, T2>;
3352
3352
  <T1, T2>(iteratee: lodash.__, values: lodash.List<T2>, array: lodash.List<T1>): LodashPullAllBy4x6<T1, T2>;
@@ -3354,20 +3354,20 @@ declare namespace _ {
3354
3354
  }
3355
3355
  interface LodashPullAllBy1x1<T> {
3356
3356
  (values: lodash.List<T>): LodashPullAllBy1x3<T>;
3357
- (values: lodash.__, array: ReadonlyArray<T>): LodashPullAllBy1x5<T>;
3358
- (values: lodash.List<T>, array: ReadonlyArray<T>): T[];
3357
+ (values: lodash.__, array: readonly T[]): LodashPullAllBy1x5<T>;
3358
+ (values: lodash.List<T>, array: readonly T[]): T[];
3359
3359
  (values: lodash.__, array: lodash.List<T>): LodashPullAllBy2x5<T>;
3360
3360
  (values: lodash.List<T>, array: lodash.List<T>): lodash.List<T>;
3361
3361
  }
3362
3362
  interface LodashPullAllBy1x2<T> {
3363
3363
  (iteratee: lodash.ValueIteratee<T>): LodashPullAllBy1x3<T>;
3364
- (iteratee: lodash.__, array: ReadonlyArray<T>): LodashPullAllBy1x6<T>;
3365
- (iteratee: lodash.ValueIteratee<T>, array: ReadonlyArray<T>): T[];
3364
+ (iteratee: lodash.__, array: readonly T[]): LodashPullAllBy1x6<T>;
3365
+ (iteratee: lodash.ValueIteratee<T>, array: readonly T[]): T[];
3366
3366
  (iteratee: lodash.__, array: lodash.List<T>): LodashPullAllBy2x6<T>;
3367
3367
  (iteratee: lodash.ValueIteratee<T>, array: lodash.List<T>): lodash.List<T>;
3368
3368
  }
3369
3369
  interface LodashPullAllBy1x3<T> {
3370
- (array: ReadonlyArray<T>): T[];
3370
+ (array: readonly T[]): T[];
3371
3371
  (array: lodash.List<T>): lodash.List<T>;
3372
3372
  }
3373
3373
  interface LodashPullAllBy1x4<T> {
@@ -3386,20 +3386,20 @@ declare namespace _ {
3386
3386
  type LodashPullAllBy2x6<T> = (iteratee: lodash.ValueIteratee<T>) => lodash.List<T>;
3387
3387
  interface LodashPullAllBy3x1<T1, T2> {
3388
3388
  (values: lodash.List<T2>): LodashPullAllBy3x3<T1>;
3389
- (values: lodash.__, array: ReadonlyArray<T1>): LodashPullAllBy3x5<T1, T2>;
3390
- (values: lodash.List<T2>, array: ReadonlyArray<T1>): T1[];
3389
+ (values: lodash.__, array: readonly T1[]): LodashPullAllBy3x5<T1, T2>;
3390
+ (values: lodash.List<T2>, array: readonly T1[]): T1[];
3391
3391
  (values: lodash.__, array: lodash.List<T1>): LodashPullAllBy4x5<T1, T2>;
3392
3392
  (values: lodash.List<T2>, array: lodash.List<T1>): lodash.List<T1>;
3393
3393
  }
3394
3394
  interface LodashPullAllBy3x2<T2> {
3395
3395
  <T1>(iteratee: lodash.ValueIteratee<T1 | T2>): LodashPullAllBy3x3<T1>;
3396
- <T1>(iteratee: lodash.__, array: ReadonlyArray<T1>): LodashPullAllBy3x6<T1, T2>;
3397
- <T1>(iteratee: lodash.ValueIteratee<T1 | T2>, array: ReadonlyArray<T1>): T1[];
3396
+ <T1>(iteratee: lodash.__, array: readonly T1[]): LodashPullAllBy3x6<T1, T2>;
3397
+ <T1>(iteratee: lodash.ValueIteratee<T1 | T2>, array: readonly T1[]): T1[];
3398
3398
  <T1>(iteratee: lodash.__, array: lodash.List<T1>): LodashPullAllBy4x6<T1, T2>;
3399
3399
  <T1>(iteratee: lodash.ValueIteratee<T1 | T2>, array: lodash.List<T1>): lodash.List<T1>;
3400
3400
  }
3401
3401
  interface LodashPullAllBy3x3<T1> {
3402
- (array: ReadonlyArray<T1>): T1[];
3402
+ (array: readonly T1[]): T1[];
3403
3403
  (array: lodash.List<T1>): lodash.List<T1>;
3404
3404
  }
3405
3405
  interface LodashPullAllBy3x4<T1> {
@@ -3420,10 +3420,10 @@ declare namespace _ {
3420
3420
  <T>(comparator: lodash.Comparator<T>): LodashPullAllWith1x1<T>;
3421
3421
  <T>(comparator: lodash.__, values: lodash.List<T>): LodashPullAllWith1x2<T>;
3422
3422
  <T>(comparator: lodash.Comparator<T>, values: lodash.List<T>): LodashPullAllWith1x3<T>;
3423
- <T>(comparator: lodash.__, values: lodash.__, array: ReadonlyArray<T>): LodashPullAllWith1x4<T>;
3424
- <T>(comparator: lodash.Comparator<T>, values: lodash.__, array: ReadonlyArray<T>): LodashPullAllWith1x5<T>;
3425
- <T>(comparator: lodash.__, values: lodash.List<T>, array: ReadonlyArray<T>): LodashPullAllWith1x6<T>;
3426
- <T>(comparator: lodash.Comparator<T>, values: lodash.List<T>, array: ReadonlyArray<T>): T[];
3423
+ <T>(comparator: lodash.__, values: lodash.__, array: readonly T[]): LodashPullAllWith1x4<T>;
3424
+ <T>(comparator: lodash.Comparator<T>, values: lodash.__, array: readonly T[]): LodashPullAllWith1x5<T>;
3425
+ <T>(comparator: lodash.__, values: lodash.List<T>, array: readonly T[]): LodashPullAllWith1x6<T>;
3426
+ <T>(comparator: lodash.Comparator<T>, values: lodash.List<T>, array: readonly T[]): T[];
3427
3427
  <T>(comparator: lodash.__, values: lodash.__, array: lodash.List<T>): LodashPullAllWith2x4<T>;
3428
3428
  <T>(comparator: lodash.Comparator<T>, values: lodash.__, array: lodash.List<T>): LodashPullAllWith2x5<T>;
3429
3429
  <T>(comparator: lodash.__, values: lodash.List<T>, array: lodash.List<T>): LodashPullAllWith2x6<T>;
@@ -3431,10 +3431,10 @@ declare namespace _ {
3431
3431
  <T1, T2>(comparator: lodash.Comparator2<T1, T2>): LodashPullAllWith3x1<T1, T2>;
3432
3432
  <T2>(comparator: lodash.__, values: lodash.List<T2>): LodashPullAllWith3x2<T2>;
3433
3433
  <T1, T2>(comparator: lodash.Comparator2<T1, T2>, values: lodash.List<T2>): LodashPullAllWith3x3<T1>;
3434
- <T1>(comparator: lodash.__, values: lodash.__, array: ReadonlyArray<T1>): LodashPullAllWith3x4<T1>;
3435
- <T1, T2>(comparator: lodash.Comparator2<T1, T2>, values: lodash.__, array: ReadonlyArray<T1>): LodashPullAllWith3x5<T1, T2>;
3436
- <T1, T2>(comparator: lodash.__, values: lodash.List<T2>, array: ReadonlyArray<T1>): LodashPullAllWith3x6<T1, T2>;
3437
- <T1, T2>(comparator: lodash.Comparator2<T1, T2>, values: lodash.List<T2>, array: ReadonlyArray<T1>): T1[];
3434
+ <T1>(comparator: lodash.__, values: lodash.__, array: readonly T1[]): LodashPullAllWith3x4<T1>;
3435
+ <T1, T2>(comparator: lodash.Comparator2<T1, T2>, values: lodash.__, array: readonly T1[]): LodashPullAllWith3x5<T1, T2>;
3436
+ <T1, T2>(comparator: lodash.__, values: lodash.List<T2>, array: readonly T1[]): LodashPullAllWith3x6<T1, T2>;
3437
+ <T1, T2>(comparator: lodash.Comparator2<T1, T2>, values: lodash.List<T2>, array: readonly T1[]): T1[];
3438
3438
  <T1>(comparator: lodash.__, values: lodash.__, array: lodash.List<T1>): LodashPullAllWith4x4<T1>;
3439
3439
  <T1, T2>(comparator: lodash.Comparator2<T1, T2>, values: lodash.__, array: lodash.List<T1>): LodashPullAllWith4x5<T1, T2>;
3440
3440
  <T1, T2>(comparator: lodash.__, values: lodash.List<T2>, array: lodash.List<T1>): LodashPullAllWith4x6<T1, T2>;
@@ -3442,20 +3442,20 @@ declare namespace _ {
3442
3442
  }
3443
3443
  interface LodashPullAllWith1x1<T> {
3444
3444
  (values: lodash.List<T>): LodashPullAllWith1x3<T>;
3445
- (values: lodash.__, array: ReadonlyArray<T>): LodashPullAllWith1x5<T>;
3446
- (values: lodash.List<T>, array: ReadonlyArray<T>): T[];
3445
+ (values: lodash.__, array: readonly T[]): LodashPullAllWith1x5<T>;
3446
+ (values: lodash.List<T>, array: readonly T[]): T[];
3447
3447
  (values: lodash.__, array: lodash.List<T>): LodashPullAllWith2x5<T>;
3448
3448
  (values: lodash.List<T>, array: lodash.List<T>): lodash.List<T>;
3449
3449
  }
3450
3450
  interface LodashPullAllWith1x2<T> {
3451
3451
  (comparator: lodash.Comparator<T>): LodashPullAllWith1x3<T>;
3452
- (comparator: lodash.__, array: ReadonlyArray<T>): LodashPullAllWith1x6<T>;
3453
- (comparator: lodash.Comparator<T>, array: ReadonlyArray<T>): T[];
3452
+ (comparator: lodash.__, array: readonly T[]): LodashPullAllWith1x6<T>;
3453
+ (comparator: lodash.Comparator<T>, array: readonly T[]): T[];
3454
3454
  (comparator: lodash.__, array: lodash.List<T>): LodashPullAllWith2x6<T>;
3455
3455
  (comparator: lodash.Comparator<T>, array: lodash.List<T>): lodash.List<T>;
3456
3456
  }
3457
3457
  interface LodashPullAllWith1x3<T> {
3458
- (array: ReadonlyArray<T>): T[];
3458
+ (array: readonly T[]): T[];
3459
3459
  (array: lodash.List<T>): lodash.List<T>;
3460
3460
  }
3461
3461
  interface LodashPullAllWith1x4<T> {
@@ -3474,20 +3474,20 @@ declare namespace _ {
3474
3474
  type LodashPullAllWith2x6<T> = (comparator: lodash.Comparator<T>) => lodash.List<T>;
3475
3475
  interface LodashPullAllWith3x1<T1, T2> {
3476
3476
  (values: lodash.List<T2>): LodashPullAllWith3x3<T1>;
3477
- (values: lodash.__, array: ReadonlyArray<T1>): LodashPullAllWith3x5<T1, T2>;
3478
- (values: lodash.List<T2>, array: ReadonlyArray<T1>): T1[];
3477
+ (values: lodash.__, array: readonly T1[]): LodashPullAllWith3x5<T1, T2>;
3478
+ (values: lodash.List<T2>, array: readonly T1[]): T1[];
3479
3479
  (values: lodash.__, array: lodash.List<T1>): LodashPullAllWith4x5<T1, T2>;
3480
3480
  (values: lodash.List<T2>, array: lodash.List<T1>): lodash.List<T1>;
3481
3481
  }
3482
3482
  interface LodashPullAllWith3x2<T2> {
3483
3483
  <T1>(comparator: lodash.Comparator2<T1, T2>): LodashPullAllWith3x3<T1>;
3484
- <T1>(comparator: lodash.__, array: ReadonlyArray<T1>): LodashPullAllWith3x6<T1, T2>;
3485
- <T1>(comparator: lodash.Comparator2<T1, T2>, array: ReadonlyArray<T1>): T1[];
3484
+ <T1>(comparator: lodash.__, array: readonly T1[]): LodashPullAllWith3x6<T1, T2>;
3485
+ <T1>(comparator: lodash.Comparator2<T1, T2>, array: readonly T1[]): T1[];
3486
3486
  <T1>(comparator: lodash.__, array: lodash.List<T1>): LodashPullAllWith4x6<T1, T2>;
3487
3487
  <T1>(comparator: lodash.Comparator2<T1, T2>, array: lodash.List<T1>): lodash.List<T1>;
3488
3488
  }
3489
3489
  interface LodashPullAllWith3x3<T1> {
3490
- (array: ReadonlyArray<T1>): T1[];
3490
+ (array: readonly T1[]): T1[];
3491
3491
  (array: lodash.List<T1>): lodash.List<T1>;
3492
3492
  }
3493
3493
  interface LodashPullAllWith3x4<T1> {
@@ -3506,13 +3506,13 @@ declare namespace _ {
3506
3506
  type LodashPullAllWith4x6<T1, T2> = (comparator: lodash.Comparator2<T1, T2>) => lodash.List<T1>;
3507
3507
  interface LodashPullAt {
3508
3508
  (indexes: lodash.Many<number>): LodashPullAt1x1;
3509
- <T>(indexes: lodash.__, array: ReadonlyArray<T>): LodashPullAt1x2<T>;
3510
- <T>(indexes: lodash.Many<number>, array: ReadonlyArray<T>): T[];
3509
+ <T>(indexes: lodash.__, array: readonly T[]): LodashPullAt1x2<T>;
3510
+ <T>(indexes: lodash.Many<number>, array: readonly T[]): T[];
3511
3511
  <T>(indexes: lodash.__, array: lodash.List<T>): LodashPullAt2x2<T>;
3512
3512
  <T>(indexes: lodash.Many<number>, array: lodash.List<T>): lodash.List<T>;
3513
3513
  }
3514
3514
  interface LodashPullAt1x1 {
3515
- <T>(array: ReadonlyArray<T>): T[];
3515
+ <T>(array: readonly T[]): T[];
3516
3516
  <T>(array: lodash.List<T>): lodash.List<T>;
3517
3517
  }
3518
3518
  type LodashPullAt1x2<T> = (indexes: lodash.Many<number>) => T[];
@@ -4210,27 +4210,27 @@ declare namespace _ {
4210
4210
  <T, TResult>(iteratee: lodash.MemoVoidIteratorCapped<T, TResult>): LodashTransform1x1<T, TResult>;
4211
4211
  <TResult>(iteratee: lodash.__, accumulator: TResult): LodashTransform1x2<TResult>;
4212
4212
  <T, TResult>(iteratee: lodash.MemoVoidIteratorCapped<T, TResult>, accumulator: TResult): LodashTransform1x3<T, TResult>;
4213
- <T>(iteratee: lodash.__, accumulator: lodash.__, object: ReadonlyArray<T>): LodashTransform1x4<T>;
4214
- <T, TResult>(iteratee: lodash.MemoVoidIteratorCapped<T, TResult>, accumulator: lodash.__, object: ReadonlyArray<T>): LodashTransform1x5<TResult>;
4215
- <T, TResult>(iteratee: lodash.__, accumulator: TResult, object: ReadonlyArray<T>): LodashTransform1x6<T, TResult>;
4216
- <T, TResult>(iteratee: lodash.MemoVoidIteratorCapped<T, TResult>, accumulator: TResult, object: ReadonlyArray<T> | lodash.Dictionary<T>): TResult;
4213
+ <T>(iteratee: lodash.__, accumulator: lodash.__, object: readonly T[]): LodashTransform1x4<T>;
4214
+ <T, TResult>(iteratee: lodash.MemoVoidIteratorCapped<T, TResult>, accumulator: lodash.__, object: readonly T[]): LodashTransform1x5<TResult>;
4215
+ <T, TResult>(iteratee: lodash.__, accumulator: TResult, object: readonly T[]): LodashTransform1x6<T, TResult>;
4216
+ <T, TResult>(iteratee: lodash.MemoVoidIteratorCapped<T, TResult>, accumulator: TResult, object: readonly T[] | lodash.Dictionary<T>): TResult;
4217
4217
  <T>(iteratee: lodash.__, accumulator: lodash.__, object: lodash.Dictionary<T>): LodashTransform2x4<T>;
4218
4218
  <T, TResult>(iteratee: lodash.MemoVoidIteratorCapped<T, TResult>, accumulator: lodash.__, object: lodash.Dictionary<T>): LodashTransform2x5<TResult>;
4219
4219
  <T, TResult>(iteratee: lodash.__, accumulator: TResult, object: lodash.Dictionary<T>): LodashTransform2x6<T, TResult>;
4220
4220
  }
4221
4221
  interface LodashTransform1x1<T, TResult> {
4222
4222
  (accumulator: TResult): LodashTransform1x3<T, TResult>;
4223
- (accumulator: lodash.__, object: ReadonlyArray<T>): LodashTransform1x5<TResult>;
4224
- (accumulator: TResult, object: ReadonlyArray<T> | lodash.Dictionary<T>): TResult;
4223
+ (accumulator: lodash.__, object: readonly T[]): LodashTransform1x5<TResult>;
4224
+ (accumulator: TResult, object: readonly T[] | lodash.Dictionary<T>): TResult;
4225
4225
  (accumulator: lodash.__, object: lodash.Dictionary<T>): LodashTransform2x5<TResult>;
4226
4226
  }
4227
4227
  interface LodashTransform1x2<TResult> {
4228
4228
  <T>(iteratee: lodash.MemoVoidIteratorCapped<T, TResult>): LodashTransform1x3<T, TResult>;
4229
- <T>(iteratee: lodash.__, object: ReadonlyArray<T>): LodashTransform1x6<T, TResult>;
4230
- <T>(iteratee: lodash.MemoVoidIteratorCapped<T, TResult>, object: ReadonlyArray<T> | lodash.Dictionary<T>): TResult;
4229
+ <T>(iteratee: lodash.__, object: readonly T[]): LodashTransform1x6<T, TResult>;
4230
+ <T>(iteratee: lodash.MemoVoidIteratorCapped<T, TResult>, object: readonly T[] | lodash.Dictionary<T>): TResult;
4231
4231
  <T>(iteratee: lodash.__, object: lodash.Dictionary<T>): LodashTransform2x6<T, TResult>;
4232
4232
  }
4233
- type LodashTransform1x3<T, TResult> = (object: ReadonlyArray<T> | lodash.Dictionary<T>) => TResult;
4233
+ type LodashTransform1x3<T, TResult> = (object: readonly T[] | lodash.Dictionary<T>) => TResult;
4234
4234
  interface LodashTransform1x4<T> {
4235
4235
  <TResult>(iteratee: lodash.MemoVoidIteratorCapped<T, TResult>): LodashTransform1x5<TResult>;
4236
4236
  <TResult>(iteratee: lodash.__, accumulator: TResult): LodashTransform1x6<T, TResult>;
@@ -4490,12 +4490,12 @@ declare namespace _ {
4490
4490
  <T extends object>(object: T | null | undefined): Array<T[keyof T]>;
4491
4491
  }
4492
4492
  interface LodashWithout {
4493
- <T>(values: ReadonlyArray<T>): LodashWithout1x1<T>;
4493
+ <T>(values: readonly T[]): LodashWithout1x1<T>;
4494
4494
  <T>(values: lodash.__, array: lodash.List<T> | null | undefined): LodashWithout1x2<T>;
4495
- <T>(values: ReadonlyArray<T>, array: lodash.List<T> | null | undefined): T[];
4495
+ <T>(values: readonly T[], array: lodash.List<T> | null | undefined): T[];
4496
4496
  }
4497
4497
  type LodashWithout1x1<T> = (array: lodash.List<T> | null | undefined) => T[];
4498
- type LodashWithout1x2<T> = (values: ReadonlyArray<T>) => T[];
4498
+ type LodashWithout1x2<T> = (values: readonly T[]) => T[];
4499
4499
  type LodashWords = (string: string) => string[];
4500
4500
  interface LodashWrap {
4501
4501
  <T, TArgs, TResult>(wrapper: (value: T, ...args: TArgs[]) => TResult): LodashWrap1x1<T, TArgs, TResult>;
lodash/index.d.ts CHANGED
@@ -16,6 +16,6 @@ export as namespace _;
16
16
 
17
17
  declare const _: _.LoDashStatic;
18
18
  declare namespace _ {
19
- // tslint:disable-next-line no-empty-interface (This will be augmented)
19
+ // eslint-disable-next-line @typescript-eslint/no-empty-interface -- (This will be augmented)
20
20
  interface LoDashStatic {}
21
21
  }
lodash/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/lodash",
3
- "version": "4.14.200",
3
+ "version": "4.14.202",
4
4
  "description": "TypeScript definitions for lodash",
5
5
  "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/lodash",
6
6
  "license": "MIT",
@@ -55,6 +55,6 @@
55
55
  },
56
56
  "scripts": {},
57
57
  "dependencies": {},
58
- "typesPublisherContentHash": "e3e9b88820fb621e857d605f5a9fd17b04ac419547728c15d036e92aaf2bfe2e",
58
+ "typesPublisherContentHash": "2ee5f60edd87342ef5a1583206f0bc89316579ce56fbb428ecc225da97131b77",
59
59
  "typeScriptVersion": "4.5"
60
60
  }