docs: document cli shared helpers

This commit is contained in:
Peter Steinberger
2026-06-03 18:23:23 -04:00
parent 90b8b41c41
commit 4f4cd2e8ae
7 changed files with 29 additions and 0 deletions

View File

@@ -1,7 +1,10 @@
// CLI-facing TCP port parser wrapper.
import { parseTcpPort } from "../../infra/tcp-port.js";
/** Re-export the canonical TCP port parser and limit for CLI callers. */
export { MAX_TCP_PORT, parseTcpPort } from "../../infra/tcp-port.js";
/** Parse a TCP port from unknown CLI/config input, returning null for invalid values. */
export function parsePort(raw: unknown): number | null {
return parseTcpPort(raw);
}