import * as types from './utils/types'; import AbstractInterface from './AbstractInterface__'; /** * 由JSON生成接口 */ export declare abstract class ImportedInterface extends AbstractInterface { /** 类名 */ static readonly ConceptName: string; /** * 是否为抽象类 * 抽象类不能产生 concept: string */ static isAbstract: boolean; /** 继承链 */ static readonly inheritanceChain: string[]; /** * 产品概念 */ readonly concept: 'Interface' | 'MicroserviceInterface' | 'GatewayInterface' | 'AuthInterface' | 'McpInterface'; /** * exampleMap */ exampleMap: Record<'responseBody' | 'requestBody', string>; /** * @param source 需要合并的部分参数 */ constructor(source?: Partial); static from(source: any, parentNode?: any, parentKey?: string): types.ImportedInterfaceNode; name?: string; } export default ImportedInterface; //# sourceMappingURL=ImportedInterface__.d.ts.map