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