mirror of
https://github.com/grpc/grpc-node.git
synced 2026-01-18 14:18:13 +00:00
13 lines
216 B
TypeScript
13 lines
216 B
TypeScript
// Original file: test/fixtures/echo_service.proto
|
|
|
|
|
|
export interface EchoMessage {
|
|
'value'?: (string);
|
|
'value2'?: (number);
|
|
}
|
|
|
|
export interface EchoMessage__Output {
|
|
'value': (string);
|
|
'value2': (number);
|
|
}
|