summaryrefslogtreecommitdiff
path: root/cli/dts/lib.deno.unstable.d.ts
diff options
context:
space:
mode:
authorDivy Srivastava <dj.srivastava23@gmail.com>2022-09-28 10:46:29 -0700
committerGitHub <noreply@github.com>2022-09-28 23:16:29 +0530
commite64af6260a512a9e6eaed8bc8c48f0222c39afb2 (patch)
tree2471772b0a9f18e61fd0e8c4b2140fb2556c5e5e /cli/dts/lib.deno.unstable.d.ts
parentd677ba67f50e5edb0491d8ed1e4171473d662081 (diff)
feat(ext/flash): add `reuseport` option on Linux (#16022)
Diffstat (limited to 'cli/dts/lib.deno.unstable.d.ts')
-rw-r--r--cli/dts/lib.deno.unstable.d.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/cli/dts/lib.deno.unstable.d.ts b/cli/dts/lib.deno.unstable.d.ts
index 98cae94a4..a25c1011e 100644
--- a/cli/dts/lib.deno.unstable.d.ts
+++ b/cli/dts/lib.deno.unstable.d.ts
@@ -1352,6 +1352,9 @@ declare namespace Deno {
/** An AbortSignal to close the server and all connections. */
signal?: AbortSignal;
+ /** Sets SO_REUSEPORT on Linux. */
+ reusePort?: boolean;
+
/** The handler to invoke when route handlers throw an error. */
onError?: (error: unknown) => Response | Promise<Response>;