/** * @author jasonHzq * @description 列举所有 specs 的命令 */ import type { PontxManager } from "../../manager.d.ts"; import type { CliContext } from "../context.d.ts"; /** * 列举 specs 的选项 */ export interface ListSpecsOptions { /** 使用远程元数据 */ useRemote?: boolean; /** 以 JSON 格式输出 */ json?: boolean; } /** * 列举所有 specs */ export declare function listSpecsCommand(managerOrContext: PontxManager | CliContext, options?: ListSpecsOptions): Promise;