/** * @author jasonHzq * @description Spec 作用域命令:查看 Schema 元数据 */ import type { PontxManager } from "../../../manager.d.ts"; import type { CliContext } from "../../context.d.ts"; export declare function getSchemaMeta(pontxManager: PontxManager, specName: string, schemaName: string, useRemote?: boolean): any; /** * Show Schema command: display schema metadata */ export declare function showSchemaCommand(ctx: CliContext, specName: string, schemaName: string, options?: { useRemote?: boolean; }): Promise;