Merge pull request #5186 from chrootsu/lodash-modArgs

lodash: changed _.modArgs() method (minor fix)
This commit is contained in:
Masahiro Wakame
2015-08-04 00:26:51 +09:00
+2 -2
View File
@@ -5560,12 +5560,12 @@ declare module _ {
/**
* @see _.modArgs
*/
modArgs<TResult>(...transforms: Function[]): LoDashObjectWrapper<TResult>;
modArgs<TResult extends Function>(...transforms: Function[]): LoDashObjectWrapper<TResult>;
/**
* @see _.modArgs
*/
modArgs<TResult>(transforms: Function[]): LoDashObjectWrapper<TResult>;
modArgs<TResult extends Function>(transforms: Function[]): LoDashObjectWrapper<TResult>;
}
//_.negate