UNPKG

cc-code-status

Version:

Enhanced Claude Code launcher with statusline - supports multiple custom API configurations and code statistics

17 lines 438 B
/** * 配置常量 * 定义所有 API 提供商的预设配置 */ export declare const CONFIG_NAME = "cc-code-status"; export interface ApiProvider { name: string; baseUrl: string; description: string; } export declare const API_PROVIDERS: Record<string, ApiProvider>; export declare const DEFAULT_SYNC_CONFIG: { apiUrl: string; syncInterval: number; enabled: boolean; }; //# sourceMappingURL=constants.d.ts.map