diff options
author | Leo Kettmeir <crowlkats@toaxl.com> | 2023-05-21 21:52:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-21 21:52:45 +0200 |
commit | addfb0c546f3cd911514591a91a9eef2ce5e3cec (patch) | |
tree | 94ded6721e49abfe49ca244ee702f4c12e053ebe /cli/tsc | |
parent | 6255cf4642f97478fbf05f7b2cff1a1934364983 (diff) |
fix(ci): simplify test assertion for http version enforcing with Deno.createHttpClient (#19210)
Diffstat (limited to 'cli/tsc')
-rw-r--r-- | cli/tsc/dts/lib.deno.unstable.d.ts | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/cli/tsc/dts/lib.deno.unstable.d.ts b/cli/tsc/dts/lib.deno.unstable.d.ts index 8681cbd9b..27d3af4cd 100644 --- a/cli/tsc/dts/lib.deno.unstable.d.ts +++ b/cli/tsc/dts/lib.deno.unstable.d.ts @@ -826,9 +826,16 @@ declare namespace Deno { /** Set an optional timeout for idle sockets being kept-alive. * Set to false to disable the timeout. */ poolIdleTimeout?: number | false; - /** Whether HTTP/1.1 is allowed or not. */ + /** + * Whether HTTP/1.1 is allowed or not. + * + * @default {true} + */ http1?: boolean; - /** Whether HTTP/2 is allowed or not. */ + /** Whether HTTP/2 is allowed or not. + * + * @default {true} + */ http2?: boolean; } |