/** * 返回项目运行时状态根目录 `.downcity` 的路径。 */ export declare function get_downcity_dir_path(cwd: string): string; /** * 返回项目日志目录路径。 */ export declare function get_logs_dir_path(cwd: string): string; /** * 返回项目缓存目录路径。 * * 关键点(中文) * - 当前使用隐藏命名 `.cache`,避免与用户业务目录混淆。 */ export declare function get_cache_dir_path(cwd: string): string; /** * Plugin Schedule JSONL 路径。 * * 关键点(中文) * - 调度任务属于项目 runtime 本地状态,因此放在项目 `.downcity/` 下。 */ export declare function get_downcity_schedule_db_path(cwd: string): string; /** * 返回项目运行时数据目录路径。 */ export declare function get_downcity_data_dir_path(cwd: string): string; /** * 返回项目公开静态资源目录路径。 */ export declare function get_downcity_public_dir_path(cwd: string): string; /** * 返回项目任务目录路径。 * * 关键点(中文) * - 该目录用于存放任务相关的本地文件与运行时数据。 */ export declare function get_downcity_tasks_dir_path(cwd: string): string; /** * 返回项目调试目录路径。 * * 关键点(中文) * - 当前使用隐藏目录 `.debug`,避免与用户显式业务目录冲突。 */ export declare function get_downcity_debug_dir_path(cwd: string): string; //# sourceMappingURL=WorkspacePaths.d.ts.map