mirror of https://github.com/grpc/grpc-node.git
23 lines
380 B
TypeScript
23 lines
380 B
TypeScript
// Original file: deps/gapic-showcase/schema/google/showcase/v1beta1/echo.proto
|
|
|
|
|
|
/**
|
|
* The result of the Wait operation.
|
|
*/
|
|
export interface IWaitResponse {
|
|
/**
|
|
* This content of the result.
|
|
*/
|
|
'content'?: (string);
|
|
}
|
|
|
|
/**
|
|
* The result of the Wait operation.
|
|
*/
|
|
export interface OWaitResponse {
|
|
/**
|
|
* This content of the result.
|
|
*/
|
|
'content': (string);
|
|
}
|