Skip to content

Commit

Permalink
Merge pull request #177 from murgatroid99/ts_message_type_fix
Browse files Browse the repository at this point in the history
Fix usage of Protobuf.js Message type in TS file
  • Loading branch information
murgatroid99 committed Feb 9, 2018
2 parents f4d3139 + 2f649e5 commit 42a1530
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/grpc-native-core/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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>;
}

/**
Expand Down

0 comments on commit 42a1530

Please sign in to comment.