grpc-js: change signature of MethodDefinition used in ServiceDefinition

This commit is contained in:
Mario Minardi 2019-10-08 11:34:18 -06:00
parent 1d7a7f4700
commit 1aac229321
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ export interface MethodDefinition<RequestType, ResponseType> {
}
export interface ServiceDefinition {
[index: string]: MethodDefinition<object, object>;
[index: string]: MethodDefinition<any, any>;
}
export interface ProtobufTypeDefinition {