mirror of
https://github.com/grpc/grpc-node.git
synced 2025-12-08 18:23:54 +00:00
23 lines
456 B
TypeScript
23 lines
456 B
TypeScript
// Original file: proto/grpc/testing/messages.proto
|
|
|
|
|
|
/**
|
|
* Client-streaming response.
|
|
*/
|
|
export interface StreamingInputCallResponse {
|
|
/**
|
|
* Aggregated size of payloads received from the client.
|
|
*/
|
|
'aggregated_payload_size'?: (number);
|
|
}
|
|
|
|
/**
|
|
* Client-streaming response.
|
|
*/
|
|
export interface StreamingInputCallResponse__Output {
|
|
/**
|
|
* Aggregated size of payloads received from the client.
|
|
*/
|
|
'aggregated_payload_size': (number);
|
|
}
|