diff --git a/underscore/underscore.d.ts b/underscore/underscore.d.ts index 1f8faf2e2..7dea66a84 100644 --- a/underscore/underscore.d.ts +++ b/underscore/underscore.d.ts @@ -1614,13 +1614,6 @@ interface UnderscoreStatic { **/ chain(obj: T[]): _Chain; chain(obj: T): _Chain; - - /** - * Extracts the value of a wrapped object. - * @param obj Wrapped object to extract the value from. - * @return Value of `obj`. - **/ - value(obj: T): TResult; } interface Underscore { @@ -2463,7 +2456,8 @@ interface Underscore { /** * Wrapped type `any`. - * @see _.value + * Extracts the value of a wrapped object. + * @return Value of the wrapped object. **/ value(): TResult; }