modified _.omit definition to use ObjectIterator interface

This commit is contained in:
Brian Zengel
2013-10-20 17:45:45 -04:00
parent 005a1793dc
commit f5d3448351
+2 -2
View File
@@ -2636,9 +2636,9 @@ declare module _ {
/**
* @see _.omit
**/
export function omit(
export function omit<T>(
object: any,
callback: (value: any) => boolean,
callback: ObjectIterator<T, boolean>,
thisArg?: any): any;
/**