File tree 2 files changed +4
-2
lines changed 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -1360,7 +1360,8 @@ declare module 'immutable' {
1360
1360
* True if the result of following a path of keys or indices through nested
1361
1361
* Iterables results in a set value.
1362
1362
*/
1363
- hasIn ( searchKeyPath ) : boolean ;
1363
+ hasIn ( searchKeyPath : Array < any > , notSetValue ?: any ) : boolean ;
1364
+ hasIn ( searchKeyPath : Iterable < any , any > , notSetValue ?: any ) : boolean ;
1364
1365
1365
1366
1366
1367
// Conversion to JavaScript types
Original file line number Diff line number Diff line change @@ -1360,7 +1360,8 @@ declare module 'immutable' {
1360
1360
* True if the result of following a path of keys or indices through nested
1361
1361
* Iterables results in a set value.
1362
1362
*/
1363
- hasIn ( searchKeyPath ) : boolean ;
1363
+ hasIn ( searchKeyPath : Array < any > , notSetValue ?: any ) : boolean ;
1364
+ hasIn ( searchKeyPath : Iterable < any , any > , notSetValue ?: any ) : boolean ;
1364
1365
1365
1366
1366
1367
// Conversion to JavaScript types
You can’t perform that action at this time.
0 commit comments