Fix usage of Protobuf.js Message type in TS file

This commit is contained in:
murgatroid99 2018-02-09 11:12:27 -08:00
parent f4d3139242
commit 2f649e5d05
1 changed files with 1 additions and 1 deletions

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;
[name: string]: GrpcObject | typeof Client | Message<any>;
}
/**