diff options
author | Asher Gomez <ashersaupingomez@gmail.com> | 2024-02-24 01:52:23 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-23 07:52:23 -0700 |
commit | 55fa61abc6490f98eb1bbd8ca02b34974fb54cb2 (patch) | |
tree | 6efa2a9f48f2a93cedb121fb1e81e7e77fa426f7 /cli/tsc | |
parent | 0730d749adc160dfedc21a0fd4db3199c341dde5 (diff) |
chore(cli): swap `CreateHttpClientOptions.{cert,key}` descriptions (#22543)
Fixes https://github.com/denoland/deno/pull/22280#discussion_r1499615986
Diffstat (limited to 'cli/tsc')
-rw-r--r-- | cli/tsc/dts/lib.deno.unstable.d.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/tsc/dts/lib.deno.unstable.d.ts b/cli/tsc/dts/lib.deno.unstable.d.ts index 4285b65c7..e73977a22 100644 --- a/cli/tsc/dts/lib.deno.unstable.d.ts +++ b/cli/tsc/dts/lib.deno.unstable.d.ts @@ -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; |