mirror of https://github.com/grpc/grpc-node.git
25 lines
488 B
TypeScript
25 lines
488 B
TypeScript
// Original file: deps/gapic-showcase/schema/google/showcase/v1beta1/echo.proto
|
|
|
|
|
|
/**
|
|
* The response for Block method.
|
|
*/
|
|
export interface IBlockResponse {
|
|
/**
|
|
* This content can contain anything, the server will not depend on a value
|
|
* here.
|
|
*/
|
|
'content'?: (string);
|
|
}
|
|
|
|
/**
|
|
* The response for Block method.
|
|
*/
|
|
export interface OBlockResponse {
|
|
/**
|
|
* This content can contain anything, the server will not depend on a value
|
|
* here.
|
|
*/
|
|
'content': (string);
|
|
}
|