/** * @author pontx * @description SDK CLI 运行入口 */ 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;