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
The PR #586 introduced type definitions for futuresCancelBatchOrders. 🚀
futuresCancelBatchOrders
Unfortunately, the function is missing a return-type definition which becomes a problem when trying to use it with strictly typed code:
binance-api-node/index.d.ts:666:5 - error TS7010: 'futuresCancelBatchOrders', which lacks return-type annotation, implicitly has an 'any' return type.
@jinusean do you know what the function returns or is it just Promise<void>?
Promise<void>
P.S. It's funny that the error occurs in line 666. 😈
The text was updated successfully, but these errors were encountered:
How did you solve this problem? What is the best temporary way?
Sorry, something went wrong.
I downgraded to binance-api-node v0.12.6 - Does it work for you as well?
I can probably revert the PR if @bennycode confirms, not a type expert
No branches or pull requests
The PR #586 introduced type definitions for
futuresCancelBatchOrders
. 🚀Unfortunately, the function is missing a return-type definition which becomes a problem when trying to use it with strictly typed code:
@jinusean do you know what the function returns or is it just
Promise<void>
?P.S. It's funny that the error occurs in line 666. 😈
The text was updated successfully, but these errors were encountered: