-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Wrong output type for toBigInt #1485
Conversation
The type of an instance of `BigInt` is `bigint`. This is important because if `a` and `b` are of type `BigInt`, we can sum them for example...
Ah! You are correct! Thanks for letting me know. I’ll fix this today. |
Thank you for such a fast answer!! |
This should be fixed in 5.1.3. Let me know if it works for you now. :) |
I still have the same issue with 5.1.3. Return type is still |
The Can you show what your code looks like and paste the error? |
I have |
Can you remove your |
I got version |
The type of an instance of
BigInt
isbigint
.This is important because if
a
andb
are of typeBigInt
, we can't sum them for example...