Regenerate golden files

This commit is contained in:
Michael Lumish 2020-08-10 15:20:13 -07:00
parent 471c59fa27
commit 7550c00a24
2 changed files with 3 additions and 3 deletions

View File

@ -172,7 +172,7 @@ export interface OperationsClient extends grpc.Client {
* returns long-running operations should implement the `Operations` interface
* so developers can have a consistent client experience.
*/
export interface OperationsHandlers {
export interface OperationsHandlers extends grpc.UntypedServiceImplementation {
/**
* Starts asynchronous cancellation on a long-running operation. The server
* makes a best effort to cancel the operation, but success is not

View File

@ -143,7 +143,7 @@ export interface EchoClient extends grpc.Client {
* paginated calls. Set the 'showcase-trailer' metadata key on any method
* to have the values echoed in the response trailers.
*/
export interface EchoHandlers {
export interface EchoHandlers extends grpc.UntypedServiceImplementation {
/**
* This method will block (wait) for the requested amount of time
* and then return the response or error.
@ -163,7 +163,7 @@ export interface EchoHandlers {
* by the client, this method will return the a concatenation of the strings
* passed to it. This method showcases client-side streaming rpcs.
*/
Collect(call: grpc.ServerReadableStream<_google_showcase_v1beta1_EchoRequest__Output>, callback: grpc.sendUnaryData<_google_showcase_v1beta1_EchoResponse>): void;
Collect(call: grpc.ServerReadableStream<_google_showcase_v1beta1_EchoRequest__Output, _google_showcase_v1beta1_EchoResponse>, callback: grpc.sendUnaryData<_google_showcase_v1beta1_EchoResponse>): void;
/**
* This method simply echos the request. This method is showcases unary rpcs.