From dd669cd78bc4c6dfd6d6fc22dc061e76abf571bf Mon Sep 17 00:00:00 2001 From: Angelo Ocana Date: Mon, 6 Nov 2017 10:29:25 -0500 Subject: [PATCH] Ramda: Remove return Any for partial/partialRight Remove return **Any** signature for **partial** and **partialRight** as asked by @samsonkeung https://github.com/DefinitelyTyped/DefinitelyTyped/pull/21262/files/483c1ab97d7b0f99c5ff0bb2496e852aaee8f5f2#r148995006 https://github.com/DefinitelyTyped/DefinitelyTyped/pull/21262/files/483c1ab97d7b0f99c5ff0bb2496e852aaee8f5f2#r148995018 --- types/ramda/index.d.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/types/ramda/index.d.ts b/types/ramda/index.d.ts index 59d2fcf26b..5875b4ef50 100644 --- a/types/ramda/index.d.ts +++ b/types/ramda/index.d.ts @@ -1201,7 +1201,6 @@ declare namespace R { * When applied, `g` returns the result of applying `f` to the arguments * provided initially followed by the arguments provided to `g`. */ - partial(fn: (...a: any[]) => any, args: any[]): (...a: any[]) => any; partial(fn: (...a: any[]) => T, args: any[]): (...a: any[]) => T; /** @@ -1209,7 +1208,6 @@ declare namespace R { * When applied, `g` returns the result of applying `f` to the arguments * provided to `g` followed by the arguments provided initially. */ - partialRight(fn: (...a: any[]) => any, args: any[]): (...a: any[]) => any; partialRight(fn: (...a: any[]) => T, args: any[]): (...a: any[]) => T; /**