mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
chore(cli): swap CreateHttpClientOptions.{cert,key}
descriptions (#22543)
Fixes https://github.com/denoland/deno/pull/22280#discussion_r1499615986
This commit is contained in:
parent
0730d749ad
commit
55fa61abc6
1 changed files with 2 additions and 2 deletions
4
cli/tsc/dts/lib.deno.unstable.d.ts
vendored
4
cli/tsc/dts/lib.deno.unstable.d.ts
vendored
|
@ -895,9 +895,9 @@ declare namespace Deno {
|
|||
caCerts?: string[];
|
||||
/** A HTTP proxy to use for new connections. */
|
||||
proxy?: Proxy;
|
||||
/** Server private key in PEM format. */
|
||||
cert?: string;
|
||||
/** Cert chain in PEM format. */
|
||||
cert?: string;
|
||||
/** Server private key in PEM format. */
|
||||
key?: string;
|
||||
/** Sets the maximum numer of idle connections per host allowed in the pool. */
|
||||
poolMaxIdlePerHost?: number;
|
||||
|
|
Loading…
Reference in a new issue