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
Versions of relevant software used ts-protoc-gen@0.15.0
What happened
I have protocol with repeated extension field i.e.
extend WebAPI_2.ClientMsg { repeated RFQSubscriptionRequest rfq_subscription_requests = 206; }
ts-protoc-gen generates typing for it as
ts-protoc-gen
export const rfqSubscriptionRequests: jspb.ExtensionFieldInfo<RFQSubscriptionRequest>;
What you expected to happen
Typing should be
export const rfqSubscriptionRequestsList: jspb.ExtensionFieldInfo<Array<RFQSubscriptionRequest>>;
Changes: 1) add "List" suffix, 2) add Array for type.
Array
The text was updated successfully, but these errors were encountered:
Closes improbable-eng#313
9020019
666e42b
No branches or pull requests
Versions of relevant software used
ts-protoc-gen@0.15.0
What happened
I have protocol with repeated extension field i.e.
ts-protoc-gen
generates typing for it asWhat you expected to happen
Typing should be
Changes: 1) add "List" suffix, 2) add
Array
for type.The text was updated successfully, but these errors were encountered: