From 072851d2253b363e80ea72e8b0dec9ee945fe547 Mon Sep 17 00:00:00 2001 From: tkqubo Date: Mon, 12 Oct 2015 21:08:24 +0900 Subject: [PATCH] Replace method --- lodash/lodash.d.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lodash/lodash.d.ts b/lodash/lodash.d.ts index 119750404..f8432899f 100644 --- a/lodash/lodash.d.ts +++ b/lodash/lodash.d.ts @@ -6600,9 +6600,7 @@ declare module _ { * @param args Arguments to be partially applied. * @return The new partially applied function. **/ - partialRight( - func: Function, - ...args: any[]): Function; + partialRight: PartialRight } interface PartialRight {