diff --git a/underscore/underscore.d.ts b/underscore/underscore.d.ts index 14bca77966..5c74f7ae1c 100644 --- a/underscore/underscore.d.ts +++ b/underscore/underscore.d.ts @@ -368,11 +368,11 @@ declare module _ { * property values. * @param list The list to pluck elements out of that have the property `propertyName`. * @param propertyName The property to look for on each element within `list`. - * @return The list of elements within `list` that have the property `propertyName`. + * @return The list of values for `propertyName` for each element within `list` **/ export function pluck( list: Collection, - propertyName: string): T[]; + propertyName: string): any[]; /** * Returns the maximum value in list. @@ -2852,4 +2852,4 @@ interface _Chain { declare module "underscore" { export = _; -} \ No newline at end of file +}