diff options
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; } |