diff --git a/lodash/lodash.d.ts b/lodash/lodash.d.ts index 671840448..b77598f13 100644 --- a/lodash/lodash.d.ts +++ b/lodash/lodash.d.ts @@ -7997,11 +7997,17 @@ declare module _ { thisArg?: any ): TResult[]; + map( + collection: NumericDictionary, + iteratee?: NumericDictionaryIterator, + thisArg?: any + ): TResult[]; + /** * @see _.map */ map( - collection: List|Dictionary, + collection: List|Dictionary|NumericDictionary, iteratee?: string ): TResult[]; @@ -8009,7 +8015,7 @@ declare module _ { * @see _.map */ map( - collection: List|Dictionary, + collection: List|Dictionary|NumericDictionary, iteratee?: TObject ): boolean[]; } @@ -8296,6 +8302,15 @@ declare module _ { accumulator: TResult, thisArg?: any): TResult; + /** + * @see _.reduce + **/ + reduce( + collection: NumericDictionary, + callback: MemoIterator, + accumulator: TResult, + thisArg?: any): TResult; + /** * @see _.reduce **/ @@ -8320,6 +8335,14 @@ declare module _ { callback: MemoIterator, thisArg?: any): TResult; + /** + * @see _.reduce + **/ + reduce( + collection: NumericDictionary, + callback: MemoIterator, + thisArg?: any): TResult; + } interface LoDashImplicitArrayWrapper {