underscore _.findIndex now returns the correct type (number instead of the element type)

This commit is contained in:
Kjartan Ferstl 2015-03-30 13:10:14 +02:00
parent f8f1b95d00
commit f6a35d9ac8

View File

@ -278,7 +278,7 @@ interface UnderscoreStatic {
findIndex<T>(
list: _.List<T>,
iterator: _.ListIterator<T, boolean>,
context?: any): T;
context?: any): number;
/**