/** * @author jasonHzq * @description Spec 作用域命令:生成 API 调用示例代码 */ import type { PontxManager } from "../../../manager.d.ts"; import type { CliContext } from "../../context.d.ts"; export declare function makeCode(pontxManager: PontxManager, options: { case: string; specName: string; tagName: string; apiName: string; requestParams: any; bodyParams: any; }): Promise; /** * Gen command: generate API request code */ export declare function genCommand(ctx: CliContext, specName: string, tagName: string, apiName: string, options: { case?: string; params?: string; body?: string; useRemote?: boolean; }): Promise;