diff options
author | yonatan ben avraham <yonbav@gmail.com> | 2020-12-20 00:13:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-19 23:13:48 +0100 |
commit | afbd19ed9b9661a6648554e635ccdae5cbc0b0a3 (patch) | |
tree | b25a9cc9a6181e06bfb6f60dba54ef7d9cd199c7 /cli/dts/lib.deno.unstable.d.ts | |
parent | 4ab1aa8877a70ef99ca4091fc65def0aefc9c360 (diff) |
feat(unstable): support in memory certificate data for Deno.createHttpClient (#8739)
Diffstat (limited to 'cli/dts/lib.deno.unstable.d.ts')
-rw-r--r-- | cli/dts/lib.deno.unstable.d.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cli/dts/lib.deno.unstable.d.ts b/cli/dts/lib.deno.unstable.d.ts index f9ef1fb2f..e8d484ec3 100644 --- a/cli/dts/lib.deno.unstable.d.ts +++ b/cli/dts/lib.deno.unstable.d.ts @@ -1266,6 +1266,10 @@ declare namespace Deno { * Requires `allow-read` permission. */ caFile?: string; + + /** A certificate authority to use when validating TLS certificates. Certificate data must be PEM encoded. + */ + caData?: string; } /** **UNSTABLE**: New API, yet to be vetted. |