mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-04 16:04:45 +08:00
modified _.omit definition to use ObjectIterator interface
This commit is contained in:
Vendored
+2
-2
@@ -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;
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user