diff --git a/underscore/underscore.d.ts b/underscore/underscore.d.ts index 7c92ca0073..499b390a33 100644 --- a/underscore/underscore.d.ts +++ b/underscore/underscore.d.ts @@ -1310,7 +1310,7 @@ declare module _ { * @param obj Object to chain. * @return Wrapped `obj`. **/ - export function chain(obj: any): _Chain; + export function chain(obj: any): _Chain; /** * Extracts the value of a wrapped object. @@ -2077,7 +2077,7 @@ declare class _ { * Wrapped type `any`. * @see _.chain **/ - chain(): _Chain; + chain(): _Chain; /** * Wrapped type `any`. @@ -2096,7 +2096,7 @@ interface _Chain { * Wrapped type `any[]`. * @see _.each **/ - each(iterator: _.ListIterator, context?: any): _Chain; + each(iterator: _.ListIterator, context?: any): _Chain; /** * @see _.each