mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-09 11:13:57 +08:00
add NumericDictionary to lodash _.reduce parameter
This commit is contained in:
Vendored
+17
@@ -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> {
|
||||
|
||||
Reference in New Issue
Block a user