Fix index.d.ts error: Type 'Message' is not generic.

This commit is contained in:
André Wachter 2017-11-08 15:16:39 +01:00
parent e48ac4ee4e
commit 98864a343b
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 * - 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;
} }
/** /**