/** * @author jasonHzq * @description Spec 作用域 list 子命令注册 */ import type { Command } from "commander"; import type { CliContext } from "../../context.d.ts"; /** * 注册 spec 作用域 list 子命令 * @param listCmd list 父命令对象 * @param specName spec 名称(从父命令上下文获取) * @param ctx CLI 上下文 */ export declare function registerSpecListCommands(listCmd: Command, specName: string, ctx: CliContext): void;