typed-typings / npm-ramda

TypeScript's type definitions for Ramda
MIT License
384 stars 64 forks source link

R.complement doesn't work well with curried functions #419

Open mintuhouse opened 5 years ago

mintuhouse commented 5 years ago
const notEqual = R.complement(R.equals)
export const e: boolean = notEqual(1)(2)

Above code results in error as notEqual is now of type R.Varidaic