Skip to content

Commit

Permalink
Merge pull request #1559 from grissius/fix/1558-broken-client-option-…
Browse files Browse the repository at this point in the history
…types

Fix ClientOptions types
  • Loading branch information
murgatroid99 committed Sep 2, 2020
2 parents 4b9da2e + b2d8982 commit e0b19e5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/grpc-js/src/channel-options.ts
Expand Up @@ -33,7 +33,9 @@ export interface ChannelOptions {
'grpc.max_send_message_length'?: number;
'grpc.max_receive_message_length'?: number;
'grpc.enable_http_proxy'?: number;
[key: string]: string | number | undefined;
'grpc.http_connect_target'?: string;
'grpc.http_connect_creds'?: string;
[key: string]: any;
}

/**
Expand Down

0 comments on commit e0b19e5

Please sign in to comment.