mirror of https://github.com/grpc/grpc-node.git
grpc-js: change signature of MethodDefinition used in ServiceDefinition
This commit is contained in:
parent
1d7a7f4700
commit
1aac229321
|
|
@ -39,7 +39,7 @@ export interface MethodDefinition<RequestType, ResponseType> {
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface ServiceDefinition {
|
export interface ServiceDefinition {
|
||||||
[index: string]: MethodDefinition<object, object>;
|
[index: string]: MethodDefinition<any, any>;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface ProtobufTypeDefinition {
|
export interface ProtobufTypeDefinition {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue