From 8d7fd62f892706238ea570f4c77e6afb1e60100d Mon Sep 17 00:00:00 2001 From: David Sidlinger Date: Tue, 4 Feb 2014 09:38:31 -0600 Subject: [PATCH] LoDash*Wrapper.map() returns mapped result type --- lodash/lodash.d.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/lodash/lodash.d.ts b/lodash/lodash.d.ts index 97aeab757a..f51a1b7b42 100644 --- a/lodash/lodash.d.ts +++ b/lodash/lodash.d.ts @@ -1919,27 +1919,27 @@ declare module _ { **/ map( callback: ListIterator, - thisArg?: any): LoDashArrayWrapper; + thisArg?: any): LoDashArrayWrapper; /** * @see _.map * @param pluckValue _.pluck style callback **/ map( - pluckValue: string): LoDashArrayWrapper; + pluckValue: string): LoDashArrayWrapper; /** * @see _.map **/ collect( callback: ListIterator, - thisArg?: any): LoDashArrayWrapper; + thisArg?: any): LoDashArrayWrapper; /** * @see _.map **/ collect( - pluckValue: string): LoDashArrayWrapper; + pluckValue: string): LoDashArrayWrapper; } interface LoDashObjectWrapper { @@ -1948,14 +1948,14 @@ declare module _ { **/ map( callback: ObjectIterator, - thisArg?: any): LoDashObjectWrapper; + thisArg?: any): LoDashObjectWrapper; /** * @see _.map **/ collect( callback: ObjectIterator, - thisArg?: any): LoDashObjectWrapper; + thisArg?: any): LoDashObjectWrapper; } //_.max