Add nested message usage example
This commit is contained in:
parent
acbd1bf87b
commit
dc8e191077
@ -61,11 +61,7 @@ export type TestMessage = {|
|
||||
|
||||
v?: TestNestedEnum;
|
||||
|
||||
|
||||
TestNestedMessage?: TestNestedMessage;
|
||||
|
||||
|
||||
TestNestedEnum?: TestNestedEnum;
|
||||
w?: Array<TestNestedMessage>;
|
||||
|
||||
|};
|
||||
|
||||
@ -77,8 +73,6 @@ export type TestNoStreamRequest = {|
|
||||
|
||||
message?: TestMessage;
|
||||
|
||||
|
||||
|
||||
|};
|
||||
|
||||
|
||||
@ -91,8 +85,6 @@ export type TestNoStreamReply = {|
|
||||
|
||||
err_msg?: string;
|
||||
|
||||
|
||||
|
||||
|};
|
||||
|
||||
|
||||
@ -103,8 +95,6 @@ export type TestStreamRequestRequest = {|
|
||||
|
||||
message?: TestMessage;
|
||||
|
||||
|
||||
|
||||
|};
|
||||
|
||||
|
||||
@ -117,8 +107,6 @@ export type TestStreamRequestReply = {|
|
||||
|
||||
err_msg?: string;
|
||||
|
||||
|
||||
|
||||
|};
|
||||
|
||||
|
||||
@ -129,8 +117,6 @@ export type TestStreamReplyRequest = {|
|
||||
|
||||
message?: TestMessage;
|
||||
|
||||
|
||||
|
||||
|};
|
||||
|
||||
|
||||
@ -143,8 +129,6 @@ export type TestStreamReplyReply = {|
|
||||
|
||||
err_msg?: string;
|
||||
|
||||
|
||||
|
||||
|};
|
||||
|
||||
|
||||
@ -155,8 +139,6 @@ export type TestStreamBothRequest = {|
|
||||
|
||||
message?: TestMessage;
|
||||
|
||||
|
||||
|
||||
|};
|
||||
|
||||
|
||||
@ -169,8 +151,6 @@ export type TestStreamBothReply = {|
|
||||
|
||||
err_msg?: string;
|
||||
|
||||
|
||||
|
||||
|};
|
||||
|
||||
|
||||
|
@ -39,6 +39,7 @@ message TestMessage {
|
||||
|
||||
TestEnum u = 19;
|
||||
TestNestedEnum v = 20;
|
||||
repeated TestNestedMessage w = 21;
|
||||
}
|
||||
|
||||
message TestNoStreamRequest { TestMessage message = 1; }
|
||||
|
@ -33,12 +33,6 @@ export type {{.Name}} = {|
|
||||
{{range .Field}}
|
||||
{{.Name}}?: {{. | jsType}};
|
||||
{{end}}
|
||||
{{range .NestedType}}
|
||||
{{.Name}}?: {{.Name}};
|
||||
{{end}}
|
||||
{{range .EnumType}}
|
||||
{{.Name}}?: {{.Name}};
|
||||
{{end}}
|
||||
|};
|
||||
{{end}}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user