mirror of
https://github.com/grpc/grpc-node.git
synced 2026-01-18 14:18:13 +00:00
13 lines
212 B
TypeScript
13 lines
212 B
TypeScript
// Original file: test/fixtures/test_service.proto
|
|
|
|
|
|
export interface Response {
|
|
'count'?: (number);
|
|
'message'?: (string);
|
|
}
|
|
|
|
export interface Response__Output {
|
|
'count': (number);
|
|
'message': (string);
|
|
}
|