summaryrefslogtreecommitdiff
path: root/cli/tsc
diff options
context:
space:
mode:
authorAsher Gomez <ashersaupingomez@gmail.com>2024-07-09 16:57:27 +1000
committerGitHub <noreply@github.com>2024-07-09 16:57:27 +1000
commit77c5a336adde9cdf7c0ce35dd24f83f1a887570e (patch)
tree4aa59a2d4720719d8114bac191811f39c0bc43b0 /cli/tsc
parentc3b168f5a2a076af011cb7eae0674b52075fb094 (diff)
docs(ext/net): explain `port: 0` behavior (#24475)
Diffstat (limited to 'cli/tsc')
-rw-r--r--cli/tsc/dts/lib.deno.ns.d.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/cli/tsc/dts/lib.deno.ns.d.ts b/cli/tsc/dts/lib.deno.ns.d.ts
index f6befc72b..c3a80e6db 100644
--- a/cli/tsc/dts/lib.deno.ns.d.ts
+++ b/cli/tsc/dts/lib.deno.ns.d.ts
@@ -6258,6 +6258,8 @@ declare namespace Deno {
export interface ServeOptions {
/** The port to listen on.
*
+ * Set to `0` to listen on any available port.
+ *
* @default {8000} */
port?: number;