chore(cli): swap CreateHttpClientOptions.{cert,key} descriptions (#22543)

Fixes https://github.com/denoland/deno/pull/22280#discussion_r1499615986
This commit is contained in:
Asher Gomez 2024-02-24 01:52:23 +11:00 committed by GitHub
parent 0730d749ad
commit 55fa61abc6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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;