/** * @author jasonHzq * @description 缓存管理命令 */ import type { Logger } from "../../logger/types.d.ts"; /** * 清理缓存命令 */ export declare function cleanCacheCommand(rootDir: string, logger: Logger): Promise; /** * 查看缓存信息命令 */ export declare function cacheInfoCommand(rootDir: string, logger: Logger): Promise;