mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-06 14:01:24 +08:00
11 lines
418 B
TypeScript
11 lines
418 B
TypeScript
// 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);
|
|
}
|