mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-11 23:40:57 +00:00
* GRPC implementation for Typescript * Fixes a couple of issues * Finished implementing the typescript support for grpc * Updated generated code * Fixes CI
13 lines
204 B
Plaintext
13 lines
204 B
Plaintext
table HelloReply {
|
|
message:string;
|
|
}
|
|
|
|
table HelloRequest {
|
|
name:string;
|
|
}
|
|
|
|
rpc_service Greeter {
|
|
SayHello(HelloRequest):HelloReply;
|
|
SayManyHellos(HelloRequest):HelloReply (streaming: "server");
|
|
}
|