UNPKG

ccgo

Version:

Simple Claude Code launcher with config management and environment variable injection

46 lines 965 B
/** * 交互式提示 * 提供向导式配置体验 */ /** * 显示配置引导 */ export declare function showConfigGuide(): void; /** * 首次配置提示 */ export declare function showConfigPrompts(defaultName?: string): Promise<{ name: string; baseUrl: string; apiKey: string; model?: string; smallFastModel?: string; }>; /** * 选择配置 */ export declare function selectProfile(profiles: { name: string; config: any; }[]): Promise<string>; /** * 重新配置确认 */ export declare function confirmReconfigure(): Promise<boolean>; /** * 确认启动 Claude Code */ export declare function confirmLaunch(): Promise<boolean>; /** * 显示欢迎信息 */ export declare function showWelcome(): void; /** * 显示配置成功信息 */ export declare function showConfigSuccess(profileName: string): void; /** * 显示帮助信息 */ export declare function showHelp(): void; //# sourceMappingURL=prompts.d.ts.map