UNPKG

arela

Version:

AI-powered CTO with multi-agent orchestration, code summarization, visual testing (web + mobile) for blazing fast development.

14 lines 390 B
export interface InitProjectOptions { cwd: string; force?: boolean; preset?: "startup" | "enterprise" | "solo" | "custom"; } export interface InitProjectResult { created: string[]; skipped: string[]; } /** * Initialize Arela in a project */ export declare function initProject(opts: InitProjectOptions): Promise<InitProjectResult>; //# sourceMappingURL=loader.d.ts.map