mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
Ramda: Remove return Any for partial/partialRight
Remove return **Any** signature for **partial** and **partialRight** as asked by @samsonkeung483c1ab97d (r148995006)483c1ab97d (r148995018)
This commit is contained in:
parent
483c1ab97d
commit
dd669cd78b
2
types/ramda/index.d.ts
vendored
2
types/ramda/index.d.ts
vendored
@ -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;
|
||||
|
||||
/**
|
||||
|
||||
Loading…
Reference in New Issue
Block a user