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
Now plugin outputs class getters and setters with the same name as in proto files.
It will be nice to have option to generate camelCase fields.
For instance for proto:
syntax = "proto3"; message Change { string long_name = 1; }
have generated class:
export class Change { // omitted lines... get longName() { // omitted lines... }
The text was updated successfully, but these errors were encountered:
Hey.
Seems like this could be useful for the users.
I could point you in the right direction if you’d like to contribute.
Sorry, something went wrong.
@thesayyn Why not? It was some time ago since I made the change in my project. I must recall what changes I commited and I'll let you know
As I see there is already a pull request: #89
fixed at #142 and released in 0.8.4
No branches or pull requests
Now plugin outputs class getters and setters with the same name as in proto files.
It will be nice to have option to generate camelCase fields.
For instance for proto:
have generated class:
The text was updated successfully, but these errors were encountered: