diff --git a/underscore/underscore.d.ts b/underscore/underscore.d.ts index a0e5ec9dc..cd7a2867e 100644 --- a/underscore/underscore.d.ts +++ b/underscore/underscore.d.ts @@ -311,7 +311,7 @@ declare module _ { **/ export function every( list: Collection, - iterator: ListIterator, + iterator?: ListIterator, context?: any): boolean; /** @@ -319,7 +319,7 @@ declare module _ { **/ export function all( list: Collection, - iterator: ListIterator, + iterator?: ListIterator, context?: any): boolean; /** @@ -1089,8 +1089,6 @@ declare module _ { export function omit( object: any, ...keys: string[]): any; -<<<<<<< HEAD -======= /** * @see _.omit @@ -1098,7 +1096,6 @@ declare module _ { export function omit( object: any, keys: string[]): any; ->>>>>>> Upgraded underscore to v1.5.2 /** * Fill in null and undefined properties in object with values from the defaults objects, @@ -2285,20 +2282,12 @@ interface _Chain { * Wrapped type `any[]`. * @see _.all **/ -<<<<<<< HEAD - all(iterator: _.ListIterator, context?: any): _Chain; -======= all(iterator?: _.ListIterator, context?: any): _Chain; ->>>>>>> Upgraded underscore to v1.5.2 /** * @see _.all **/ -<<<<<<< HEAD - every(iterator: _.ListIterator, context?: any): _Chain; -======= every(iterator?: _.ListIterator, context?: any): _Chain; ->>>>>>> Upgraded underscore to v1.5.2 /** * Wrapped type `any[]`.