Merge pull request #1559 from grissius/fix/1558-broken-client-option-types

Fix ClientOptions types
This commit is contained in:
Michael Lumish 2020-09-02 13:37:37 -07:00 committed by GitHub
commit e0b19e5fd3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -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;
}
/**