File tree Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -92,22 +92,22 @@ declare module 'immutable' {
92
92
/**
93
93
* True if `maybeIterable` is an Iterable, or any of its subclasses.
94
94
*/
95
- function isIterable ( maybeIterable ) : boolean ;
95
+ function isIterable ( maybeIterable : any ) : boolean ;
96
96
97
97
/**
98
98
* True if `maybeKeyed` is a KeyedIterable, or any of its subclasses.
99
99
*/
100
- function isKeyed ( maybeKeyed ) : boolean ;
100
+ function isKeyed ( maybeKeyed : any ) : boolean ;
101
101
102
102
/**
103
103
* True if `maybeIndexed` is a IndexedIterable, or any of its subclasses.
104
104
*/
105
- function isIndexed ( maybeIndexed ) : boolean ;
105
+ function isIndexed ( maybeIndexed : any ) : boolean ;
106
106
107
107
/**
108
108
* True if `maybeAssociative` is either a keyed or indexed Iterable.
109
109
*/
110
- function isAssociative ( maybeAssociative ) : boolean ;
110
+ function isAssociative ( maybeAssociative : any ) : boolean ;
111
111
}
112
112
113
113
/**
@@ -1018,7 +1018,7 @@ declare module 'immutable' {
1018
1018
* True if `maybeSeq` is a Seq, it is not backed by a concrete
1019
1019
* structure such as Map, List, or Set.
1020
1020
*/
1021
- function isSeq ( maybeSeq ) : boolean ;
1021
+ function isSeq ( maybeSeq : any ) : boolean ;
1022
1022
1023
1023
/**
1024
1024
* Returns a Seq of the values provided. Alias for `IndexedSeq.of()`.
Original file line number Diff line number Diff line change @@ -92,22 +92,22 @@ declare module 'immutable' {
92
92
/**
93
93
* True if `maybeIterable` is an Iterable, or any of its subclasses.
94
94
*/
95
- function isIterable ( maybeIterable ) : boolean ;
95
+ function isIterable ( maybeIterable : any ) : boolean ;
96
96
97
97
/**
98
98
* True if `maybeKeyed` is a KeyedIterable, or any of its subclasses.
99
99
*/
100
- function isKeyed ( maybeKeyed ) : boolean ;
100
+ function isKeyed ( maybeKeyed : any ) : boolean ;
101
101
102
102
/**
103
103
* True if `maybeIndexed` is a IndexedIterable, or any of its subclasses.
104
104
*/
105
- function isIndexed ( maybeIndexed ) : boolean ;
105
+ function isIndexed ( maybeIndexed : any ) : boolean ;
106
106
107
107
/**
108
108
* True if `maybeAssociative` is either a keyed or indexed Iterable.
109
109
*/
110
- function isAssociative ( maybeAssociative ) : boolean ;
110
+ function isAssociative ( maybeAssociative : any ) : boolean ;
111
111
}
112
112
113
113
/**
@@ -1018,7 +1018,7 @@ declare module 'immutable' {
1018
1018
* True if `maybeSeq` is a Seq, it is not backed by a concrete
1019
1019
* structure such as Map, List, or Set.
1020
1020
*/
1021
- function isSeq ( maybeSeq ) : boolean ;
1021
+ function isSeq ( maybeSeq : any ) : boolean ;
1022
1022
1023
1023
/**
1024
1024
* Returns a Seq of the values provided. Alias for `IndexedSeq.of()`.
You can’t perform that action at this time.
0 commit comments