ccgo
Version:
Simple Claude Code launcher with config management and environment variable injection
18 lines • 401 B
TypeScript
/**
* 配置常量
* 定义项目名称和 API 提供商预设配置
*/
export declare const CONFIG_NAME = "cc-code-status";
/**
* API 提供商配置
*/
export interface ApiProvider {
name: string;
baseUrl: string;
description: string;
}
/**
* 预设的 API 提供商列表
*/
export declare const API_PROVIDERS: Record<string, ApiProvider>;
//# sourceMappingURL=constants.d.ts.map