/** * Init Command * Issue #96: npm install CLI support * Issue #119: Interactive init support * Initialize CommandMate configuration */ import { InitOptions, ExitCode, EnvConfig } from '../types'; /** * Result of an init run * Issue #1195: allows callers to chain init -> start without exiting the process */ export interface InitResult { ok: boolean; exitCode: ExitCode; config?: EnvConfig; envPath?: string; } /** * Run init without terminating the process * Issue #1195: extracted from initCommand so the quickstart flow can chain commands */ export declare function runInit(options: InitOptions): Promise; /** * Execute init command */ export declare function initCommand(options: InitOptions): Promise; //# sourceMappingURL=init.d.ts.map