We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Reference: https://protobuf.dev/reference/java/api-docs/com/google/protobuf/DescriptorProtos.FieldOptions.JSType
Hi!
In my proto file I have:
int64 foobar = 3 [jstype = JS_STRING];
In my generated ts file I get:
foobar: number;
Using the arguments:
--ts_proto_opt=onlyTypes=true
It should be this?
foobar: string;
Is there a configuration setting I am missing?