From dccf4cbe36d66140f9e35a6ee755c3c440d745f9 Mon Sep 17 00:00:00 2001 From: Sean Michael Wykes Date: Wed, 25 Aug 2021 09:25:12 -0300 Subject: feat(fetch): mTLS client certificates for fetch() (#11721) This commit adds support for specifying client certificates when using fetch, by means of `Deno.createHttpClient`. --- cli/dts/lib.deno.unstable.d.ts | 2 ++ 1 file changed, 2 insertions(+) (limited to 'cli/dts/lib.deno.unstable.d.ts') diff --git a/cli/dts/lib.deno.unstable.d.ts b/cli/dts/lib.deno.unstable.d.ts index 78f771ce1..ead4609c6 100644 --- a/cli/dts/lib.deno.unstable.d.ts +++ b/cli/dts/lib.deno.unstable.d.ts @@ -859,6 +859,8 @@ declare namespace Deno { */ caData?: string; proxy?: Proxy; + certChain?: string; + privateKey?: string; } export interface Proxy { -- cgit v1.2.3