We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi guys,
Can someone explain how lift typings suppose to work?
lift
Even basic case not working:
const test = lift(add)(inc, dec)(2);
lift correctly infers arity 2 (<number, number, number>), but then it fails to typecheck with:
<number, number, number>
Argument of type 'inc_0' is not assignable to parameter of type 'List<number>'
For whatever reason it expects inc and dec to return List<number> instead of number.
List<number>
number
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi guys,
Can someone explain how
lift
typings suppose to work?Even basic case not working:
const test = lift(add)(inc, dec)(2);
lift
correctly infers arity 2 (<number, number, number>
), but then it fails to typecheck with:Argument of type 'inc_0' is not assignable to parameter of type 'List<number>'
For whatever reason it expects inc and dec to return
List<number>
instead ofnumber
.The text was updated successfully, but these errors were encountered: