@@ -1776,32 +1776,32 @@ declare namespace _ {
1776
1776
type LodashIntersectionBy1x5 < T1 > = ( array : lodash . List < T1 > | null ) => T1 [ ] ;
1777
1777
type LodashIntersectionBy1x6 < T1 , T2 > = ( iteratee : lodash . ValueIteratee < T1 | T2 > ) => T1 [ ] ;
1778
1778
interface LodashIntersectionWith {
1779
- < T1 , T2 > ( comparator : lodash . Comparator2 < T1 , T2 > ) : LodashIntersectionWith1x1 < T1 , T2 > ;
1779
+ < T1 , T2 > ( comparator : lodash . Comparator2 < T1 , T1 | T2 > ) : LodashIntersectionWith1x1 < T1 , T2 > ;
1780
1780
< T1 > ( comparator : lodash . __ , array : lodash . List < T1 > | null | undefined ) : LodashIntersectionWith1x2 < T1 > ;
1781
- < T1 , T2 > ( comparator : lodash . Comparator2 < T1 , T2 > , array : lodash . List < T1 > | null | undefined ) : LodashIntersectionWith1x3 < T1 , T2 > ;
1781
+ < T1 , T2 > ( comparator : lodash . Comparator2 < T1 , T1 | T2 > , array : lodash . List < T1 > | null | undefined ) : LodashIntersectionWith1x3 < T1 , T2 > ;
1782
1782
< T2 > ( comparator : lodash . __ , array : lodash . __ , values : lodash . List < T2 > ) : LodashIntersectionWith1x4 < T2 > ;
1783
- < T1 , T2 > ( comparator : lodash . Comparator2 < T1 , T2 > , array : lodash . __ , values : lodash . List < T2 > ) : LodashIntersectionWith1x5 < T1 > ;
1783
+ < T1 , T2 > ( comparator : lodash . Comparator2 < T1 , T1 | T2 > , array : lodash . __ , values : lodash . List < T2 > ) : LodashIntersectionWith1x5 < T1 > ;
1784
1784
< T1 , T2 > ( comparator : lodash . __ , array : lodash . List < T1 > | null | undefined , values : lodash . List < T2 > ) : LodashIntersectionWith1x6 < T1 , T2 > ;
1785
- < T1 , T2 > ( comparator : lodash . Comparator2 < T1 , T2 > , array : lodash . List < T1 > | null | undefined , values : lodash . List < T2 > ) : T1 [ ] ;
1785
+ < T1 , T2 > ( comparator : lodash . Comparator2 < T1 , T1 | T2 > , array : lodash . List < T1 > | null | undefined , values : lodash . List < T2 > ) : T1 [ ] ;
1786
1786
}
1787
1787
interface LodashIntersectionWith1x1 < T1 , T2 > {
A3E2
span>
1788
1788
( array : lodash . List < T1 > | null | undefined ) : LodashIntersectionWith1x3 < T1 , T2 > ;
1789
1789
( array : lodash . __ , values : lodash . List < T2 > ) : LodashIntersectionWith1x5 < T1 > ;
1790
1790
( array : lodash . List < T1 > | null | undefined , values : lodash . List < T2 > ) : T1 [ ] ;
1791
1791
}
1792
1792
interface LodashIntersectionWith1x2 < T1 > {
1793
- < T2 > ( comparator : lodash . Comparator2 < T1 , T2 > ) : LodashIntersectionWith1x3 < T1 , T2 > ;
1793
+ < T2 > ( comparator : lodash . Comparator2 < T1 , T1 | T2 > ) : LodashIntersectionWith1x3 < T1 , T2 > ;
1794
1794
< T2 > ( comparator : lodash . __ , values : lodash . List < T2 > ) : LodashIntersectionWith1x6 < T1 , T2 > ;
1795
- < T2 > ( comparator : lodash . Comparator2 < T1 , T2 > , values : lodash . List < T2 > ) : T1 [ ] ;
1795
+ < T2 > ( comparator : lodash . Comparator2 < T1 , T1 | T2 > , values : lodash . List < T2 > ) : T1 [ ] ;
1796
1796
}
1797
1797
type LodashIntersectionWith1x3 < T1 , T2 > = ( values : lodash . List < T2 > ) => T1 [ ] ;
1798
1798
interface LodashIntersectionWith1x4 < T2 > {
1799
- < T1 > ( comparator : lodash . Comparator2 < T1 , T2 > ) : LodashIntersectionWith1x5 < T1 > ;
1799
+ < T1 > ( comparator : lodash . Comparator2 < T1 , T1 | T2 > ) : LodashIntersectionWith1x5 < T1 > ;
1800
1800
< T1 > ( comparator : lodash . __ , array : lodash . List < T1 > | null | undefined ) : LodashIntersectionWith1x6 < T1 , T2 > ;
1801
- < T1 > ( comparator : lodash . Comparator2 < T1 , T2 > , array : lodash . List < T1 > | null | undefined ) : T1 [ ] ;
1801
+ < T1 > ( comparator : lodash . Comparator2 < T1 , T1 | T2 > , array : lodash . List < T1 > | null | undefined ) : T1 [ ] ;
1802
1802
}
1803
1803
type LodashIntersectionWith1x5 < T1 > = ( array : lodash . List < T1 > | null | undefined ) => T1 [ ] ;
1804
- type LodashIntersectionWith1x6 < T1 , T2 > = ( comparator : lodash . Comparator2 < T1 , T2 > ) => T1 [ ] ;
1804
+ type LodashIntersectionWith1x6 < T1 , T2 > = ( comparator : lodash . Comparator2 < T1 , T1 | T2 > ) => T1 [ ] ;
1805
1805
type LodashInvert = ( object : object ) => lodash . Dictionary < string > ;
1806
1806
interface LodashInvertBy {
1807
1807
< T > ( interatee : lodash . ValueIteratee < T > ) : LodashInvertBy1x1 < T > ;
0 commit comments