diff options
author | Divy Srivastava <dj.srivastava23@gmail.com> | 2022-09-28 10:46:29 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-28 23:16:29 +0530 |
commit | e64af6260a512a9e6eaed8bc8c48f0222c39afb2 (patch) | |
tree | 2471772b0a9f18e61fd0e8c4b2140fb2556c5e5e /cli/dts/lib.deno.unstable.d.ts | |
parent | d677ba67f50e5edb0491d8ed1e4171473d662081 (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.ts | 3 |
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>; |