mirror of https://github.com/grpc/grpc-node.git
Merge pull request #1559 from grissius/fix/1558-broken-client-option-types
Fix ClientOptions types
This commit is contained in:
commit
e0b19e5fd3
|
@ -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;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue