/** * @author jasonHzq * @description Spec 作用域命令:列举 APIs */ import type { CliContext } from "../../context.d.ts"; export interface ListApisOptions { useRemote?: boolean; json?: boolean; tag?: string; } /** * 列举指定 spec 下的 APIs */ export declare function listApisCommand(ctx: CliContext, specName: string, tagName?: string, options?: ListApisOptions): Promise;