import type Logic from './Logic__'; import type Argument from './Argument__'; import type Connection from './Connection__'; import type ConnectorLogic from './ConnectorLogic__'; import type Param from './Param__'; import { TranslatorState, TranslatorGenerator } from '@lcap/nasl-translator'; import CallLogic from './CallLogic__'; /** * 调用连接器 */ export declare class CallConnector extends CallLogic { /** 类名 */ static readonly ConceptName: string; /** * 是否为抽象类 * 抽象类不能产生 concept: string */ static isAbstract: boolean; /** 继承链 */ static readonly inheritanceChain: string[]; /** * 产品概念 */ readonly concept: 'CallConnector'; /** * calleeConnectionName */ calleeConnectionName: string; /** * 调用连接器标题 */ label: string; /** * @param source 需要合并的部分参数 */ constructor(source?: Partial); static from(source: any, parentNode?: any, parentKey?: string): CallConnector; /** * 设置calleeConnectionName */ setCalleeConnectionName(calleeConnectionName: string): void; name?: string; get calleeTSConnectionName(): string; setCallCtor(connection: Connection): void; /** * 重置 argument、calleeConnectionName、calleeName、calleeNamespace */ resetCallCtor(): void; get calleewholeKey(): string; get calleeKey(): string; get calleeConnectionKey(): string; get calleeTSConnectionKey(): string; get connection(): Connection; get isViewLogic(): boolean; getCallNode(): Logic | ConnectorLogic; setCallee(logic: Logic): void; toJS(state?: TranslatorState): string; toEmbeddedTS(state?: import("@lcap/nasl-types/out/translator").TranslatorState): TranslatorGenerator; toNaturalTS(state?: import("@lcap/nasl-types/out/translator").TranslatorState): string; get calleeNode(): Logic; get completeArguments(): Argument[]; createArgByParam(param: Param, logic?: Logic): Argument; } export default CallConnector; //# sourceMappingURL=CallConnector__.d.ts.map