add NumericDictionary to lodash _.reduce parameter

This commit is contained in:
Warren Wong
2016-02-19 15:34:59 -08:00
parent b6e4a8d51a
commit b52524f205
+17
View File
@@ -8302,6 +8302,15 @@ declare module _ {
accumulator: TResult,
thisArg?: any): TResult;
/**
* @see _.reduce
**/
reduce<T, TResult>(
collection: NumericDictionary<T>,
callback: MemoIterator<T, TResult>,
accumulator: TResult,
thisArg?: any): TResult;
/**
* @see _.reduce
**/
@@ -8326,6 +8335,14 @@ declare module _ {
callback: MemoIterator<T, TResult>,
thisArg?: any): TResult;
/**
* @see _.reduce
**/
reduce<T, TResult>(
collection: NumericDictionary<T>,
callback: MemoIterator<T, TResult>,
thisArg?: any): TResult;
}
interface LoDashImplicitArrayWrapper<T> {