/** * @author jasonHzq * @description Spec 作用域命令:查看 API 元数据 */ import type { PontxManager } from "../../../manager.d.ts"; import type { CliContext } from "../../context.d.ts"; /** * 检查 spec 是否有 tags(即是否有 API key 包含 "/") */ export declare function specHasTags(pontSpec: any): boolean; /** * 获取 API 元数据 */ export declare function getApiMeta(pontxManager: PontxManager, specName: string, tagName: string, apiName: string, useRemote?: boolean): any; /** * Show API command: display API metadata */ export declare function showApiCommand(ctx: CliContext, specName: string, tagName: string, apiName: string, options?: { useRemote?: boolean; }): Promise;