Change resolver type to Function in lodash.d.ts

Change to support functions with arbitrary number of inputs, not just one.
This commit is contained in:
gscshoyru
2014-02-21 11:21:32 -05:00
parent ecdc7d16fe
commit bc8eb1b106
+1 -1
View File
@@ -2672,7 +2672,7 @@ declare module _ {
**/
memoize<T extends Function>(
func: T,
resolver?: (n: any) => string): T;
resolver?: Function): T;
}
//_.once