mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-09-26 02:50:27 +00:00
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
This commit is contained in:
Vendored
-2
@@ -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<T>(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<T>(fn: (...a: any[]) => T, args: any[]): (...a: any[]) => T;
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user