From 55fa61abc6490f98eb1bbd8ca02b34974fb54cb2 Mon Sep 17 00:00:00 2001 From: Asher Gomez Date: Sat, 24 Feb 2024 01:52:23 +1100 Subject: [PATCH] chore(cli): swap `CreateHttpClientOptions.{cert,key}` descriptions (#22543) Fixes https://github.com/denoland/deno/pull/22280#discussion_r1499615986 --- cli/tsc/dts/lib.deno.unstable.d.ts | 4 ++-- 1 file 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 4285b65c78..e73977a229 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;