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
Example message like:
message SomeMessage = { google.protobuf.BytesValue someBytes = 1; }
generates following line the fromJSON method for that message:
message.someBytes = Uint8Array(object.someBytes);
For valid code, keyword called new should be added, resulting in:
new
message.someBytes = new Uint8Array(object.someBytes);
The text was updated successfully, but these errors were encountered:
Fixed in v1.54.0. Thanks!
Sorry, something went wrong.
refactor(sdk): refactor common data type, add processbinding api (ste…
2a6efca
…phenh#155)
No branches or pull requests
Example message like:
generates following line the fromJSON method for that message:
For valid code, keyword called
new
should be added, resulting in:The text was updated successfully, but these errors were encountered: