/** * Start Command * Issue #96: npm install CLI support * Issue #125: Use getEnvPath and getPidFilePath for correct path resolution * Issue #136: Add --issue and --auto-port flags for worktree support * Issue #331: Add --auth, --auth-expire, --https, --cert, --key, --allow-http flags * Start CommandMate server */ import { StartOptions, ExitCode } from '../types'; /** * Result of a start run * Issue #1195: allows callers to chain start with follow-up steps without exiting */ export interface StartResult { ok: boolean; exitCode: ExitCode; url?: string; pid?: number; /** Foreground mode exits from the child 'close' handler, so the caller must not exit */ foreground?: boolean; } /** * Run start without terminating the process (daemon mode returns a result) * Issue #1195: extracted from startCommand so the quickstart flow can chain commands * Issue #125: Use getEnvPath and getPidFilePath for correct path resolution * Issue #136: Support --issue and --auto-port flags for worktree servers * Issue #331: Support --auth, --auth-expire, --https, --cert, --key, --allow-http */ export declare function runStart(options: StartOptions): Promise; /** * Execute start command */ export declare function startCommand(options: StartOptions): Promise; //# sourceMappingURL=start.d.ts.map