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
What language does this apply to?
javascript, nodejs
Describe the problem you are trying to solve.
I want to use the low level binary serialisation
Describe the solution you'd like
export BinaryEncoder, BinaryDecoder & arith.Int64, arith.Uint64
Describe alternatives you've considered
fork the project
Additional context
Actually the typescript typings seems to think they're exported: https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/google-protobuf/index.d.ts
The text was updated successfully, but these errors were encountered:
I think your best option here is to fork it.
Sorry, something went wrong.
Update:
I found that using patch-package is a better approach. The only line need to be added is:
exports.BinaryDecoder=jspb.BinaryDecoder;exports.BinaryEncoder=jspb.BinaryEncoder;exports.arith={};exports.arith.Int64=jspb.arith.Int64;exports.arith.UInt64=jspb.arith.UInt64;
perezd
No branches or pull requests
What language does this apply to?
javascript, nodejs
Describe the problem you are trying to solve.
I want to use the low level binary serialisation
Describe the solution you'd like
export BinaryEncoder, BinaryDecoder & arith.Int64, arith.Uint64
Describe alternatives you've considered
fork the project
Additional context
Actually the typescript typings seems to think they're exported:
https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/google-protobuf/index.d.ts
The text was updated successfully, but these errors were encountered: