Make Protobuf.js Message type non-generic

This commit is contained in:
Kelvin Jin 2018-06-12 10:45:48 -07:00
parent 3a72b9f514
commit abb05f0c12

View File

@ -66,7 +66,7 @@ declare module "grpc" {
* - Anything else becomes the relevant reflection object that ProtoBuf.js would create
*/
export interface GrpcObject {
[name: string]: GrpcObject | typeof Client | Message<any>;
[name: string]: GrpcObject | typeof Client | Message;
}
/**