/** * @author pontx * @description SDK CLI 运行入口 * * SDK CLI 天然是单 spec 模式,复用 registerSpecCommands 注册命令。 * 命令格式:yuque call doc getDoc(位置参数风格) */ import type { CLIConfig } from "./types.d.ts"; declare global { var __CLI_DIR__: string | undefined; } /** * 运行 SDK CLI * @param config CLI 配置 */ export declare function runCLI(config: CLIConfig): Promise;