/** * @author jasonHzq * @description 全局 list 子命令注册(只保留 specs) * * spec 作用域的 list 子命令(tags/apis/schemas)已移至 spec/list-commands.ts */ import type { Command } from "commander"; import type { CliContext } from "../context.d.ts"; /** * 注册全局 list 子命令 * @param listCmd list 父命令对象 * @param ctx CLI 上下文 */ export declare function registerListCommands(listCmd: Command, ctx: CliContext): void;