diff --git a/lodash/lodash.d.ts b/lodash/lodash.d.ts index 6618209cb..579ffd929 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[]; }