oneie
Version:
Build apps, websites, and AI agents in English. Zero-interaction setup for AI agents (Claude Code, Cursor, Windsurf). Download to your computer, run in the cloud, deploy to the edge. Open source and free forever.
17 lines • 420 B
TypeScript
/**
* Init command options
*/
export interface InitOptions {
name?: string;
email?: string;
organizationName?: string;
installationName?: string;
websiteUrl?: string;
basePath?: string;
skipClaudeLaunch?: boolean;
}
/**
* Runs the init command interactively (new onboarding flow)
*/
export declare function runInit(options?: InitOptions): Promise<void>;
//# sourceMappingURL=init.d.ts.map