Skip to content

Commit 99a3d1b

Browse files
committed
Merge pull request #185 from cybrown/noImplicitAny
Added explicitly any types for #184
2 parents 8aea08f + 5c88c8f commit 99a3d1b

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

dist/immutable.d.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -92,22 +92,22 @@ declare module 'immutable' {
9292
/**
9393
* True if `maybeIterable` is an Iterable, or any of its subclasses.
9494
*/
95-
function isIterable(maybeIterable): boolean;
95+
function isIterable(maybeIterable: any): boolean;
9696

9797
/**
9898
* True if `maybeKeyed` is a KeyedIterable, or any of its subclasses.
9999
*/
100-
function isKeyed(maybeKeyed): boolean;
100+
function isKeyed(maybeKeyed: any): boolean;
101101

102102
/**
103103
* True if `maybeIndexed` is a IndexedIterable, or any of its subclasses.
104104
*/
105-
function isIndexed(maybeIndexed): boolean;
105+
function isIndexed(maybeIndexed: any): boolean;
106106

107107
/**
108108
* True if `maybeAssociative` is either a keyed or indexed Iterable.
109109
*/
110-
function isAssociative(maybeAssociative): boolean;
110+
function isAssociative(maybeAssociative: any): boolean;
111111
}
112112

113113
/**
@@ -1018,7 +1018,7 @@ declare module 'immutable' {
10181018
* True if `maybeSeq` is a Seq, it is not backed by a concrete
10191019
* structure such as Map, List, or Set.
10201020
*/
1021-
function isSeq(maybeSeq): boolean;
1021+
function isSeq(maybeSeq: any): boolean;
10221022

10231023
/**
10241024
* Returns a Seq of the values provided. Alias for `IndexedSeq.of()`.

type-definitions/Immutable.d.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -92,22 +92,22 @@ declare module 'immutable' {
9292
/**
9393
* True if `maybeIterable` is an Iterable, or any of its subclasses.
9494
*/
95-
function isIterable(maybeIterable): boolean;
95+
function isIterable(maybeIterable: any): boolean;
9696

9797
/**
9898
* True if `maybeKeyed` is a KeyedIterable, or any of its subclasses.
9999
*/
100-
function isKeyed(maybeKeyed): boolean;
100+
function isKeyed(maybeKeyed: any): boolean;
101101

102102
/**
103103
* True if `maybeIndexed` is a IndexedIterable, or any of its subclasses.
104104
*/
105-
function isIndexed(maybeIndexed): boolean;
105+
function isIndexed(maybeIndexed: any): boolean;
106106

107107
/**
108108
* True if `maybeAssociative` is either a keyed or indexed Iterable.
109109
*/
110-
function isAssociative(maybeAssociative): boolean;
110+
function isAssociative(maybeAssociative: any): boolean;
111111
}
112112

113113
/**
@@ -1018,7 +1018,7 @@ declare module 'immutable' {
10181018
* True if `maybeSeq` is a Seq, it is not backed by a concrete
10191019
* structure such as Map, List, or Set.
10201020
*/
1021-
function isSeq(maybeSeq): boolean;
1021+
function isSeq(maybeSeq: any): boolean;
10221022

10231023
/**
10241024
* Returns a Seq of the values provided. Alias for `IndexedSeq.of()`.

0 commit comments

Comments
 (0)