diff --git a/type-definitions/immutable.js.flow b/type-definitions/immutable.js.flow index 67a496f29c..4460ff08d8 100644 --- a/type-definitions/immutable.js.flow +++ b/type-definitions/immutable.js.flow @@ -222,12 +222,12 @@ declare class _Collection implements ValueObject { predicate: (value: V, key: K, iter: this) => mixed, context?: mixed, notSetValue?: NSV - ): V | NSV; + ): V | NSV | void; findLast( predicate: (value: V, key: K, iter: this) => mixed, context?: mixed, notSetValue?: NSV - ): V | NSV; + ): V | NSV | void; findEntry(predicate: (value: V, key: K, iter: this) => mixed): [K, V] | void; findLastEntry(