From bc8eb1b106a19fec56838bc471df1d12d16fef74 Mon Sep 17 00:00:00 2001 From: gscshoyru Date: Fri, 21 Feb 2014 11:21:32 -0500 Subject: [PATCH] Change resolver type to Function in lodash.d.ts Change to support functions with arbitrary number of inputs, not just one. --- lodash/lodash.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lodash/lodash.d.ts b/lodash/lodash.d.ts index b40a59f2b1..0afd193702 100644 --- a/lodash/lodash.d.ts +++ b/lodash/lodash.d.ts @@ -2672,7 +2672,7 @@ declare module _ { **/ memoize( func: T, - resolver?: (n: any) => string): T; + resolver?: Function): T; } //_.once