import { Command, Commander, CommandExecutor } from "./core"; import { Graph } from "../core"; /** * use 引用命令执行器 */ export declare class UseExecutor extends CommandExecutor { constructor(command: Command); exec(commander: Commander): Graph; help(): string; } /** * symbol 线命令执行器 */ export declare class SymbolExecutor extends CommandExecutor { constructor(command: Command); exec(commander: Commander): Graph; help(): string; } /** * defs 线命令执行器 */ export declare class DefsExecutor extends CommandExecutor { constructor(command: Command); exec(commander: Commander): Graph; help(): string; } export default DefsExecutor;