grpc-loader: update MethodDefinition interface

This commit is contained in:
Hiep Thai 2022-09-20 09:08:43 +07:00 committed by Christopher Fenn
parent c7d4566353
commit c8b5e05366
1 changed files with 2 additions and 2 deletions

View File

@ -126,8 +126,8 @@ export interface MethodDefinition<RequestType, ResponseType, OutputRequestType=R
originalName?: string;
requestType: MessageTypeDefinition;
responseType: MessageTypeDefinition;
options?: Protobuf.IMethod['options'];
parsedOptions?: Protobuf.IMethod['parsedOptions'];
options?: { [k: string]: any };
parsedOptions?: { [k: string]: any };
}
export interface ServiceDefinition {