lodash: changed _.modArgs() method (minor fix)

This commit is contained in:
Ilya Mochalov
2015-08-03 15:39:30 +05:00
parent 287cb2e1b1
commit dad6f3af4a
+2 -2
View File
@@ -5486,12 +5486,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