mirror of https://github.com/grpc/grpc-node.git
Merge pull request #393 from kjin/grpc-message
Make Protobuf.js Message type non-generic
This commit is contained in:
commit
58a43a542e
|
@ -66,7 +66,7 @@ declare module "grpc" {
|
||||||
* - Anything else becomes the relevant reflection object that ProtoBuf.js would create
|
* - Anything else becomes the relevant reflection object that ProtoBuf.js would create
|
||||||
*/
|
*/
|
||||||
export interface GrpcObject {
|
export interface GrpcObject {
|
||||||
[name: string]: GrpcObject | typeof Client | Message<any>;
|
[name: string]: GrpcObject | typeof Client | Message;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue