Add nested message usage example

This commit is contained in:
Mathieu Acthernoene
2017-01-10 11:43:26 +01:00
parent acbd1bf87b
commit dc8e191077
3 changed files with 2 additions and 27 deletions

View File

@@ -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;
|};