Merge pull request #393 from kjin/grpc-message

Make Protobuf.js Message type non-generic
This commit is contained in:
Michael Lumish 2018-06-12 12:08:24 -07:00 committed by GitHub
commit 58a43a542e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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<any>;
[name: string]: GrpcObject | typeof Client | Message;
}
/**