import { Command, Commander, CommandExecutor } from "./core"; import { Graph } from "../core"; /** * line 线命令执行器 */ export declare class LineExecutor extends CommandExecutor { constructor(command: Command); exec(commander: Commander): Graph; help(): string; } /** * polyline 多线段命令执行器 */ export declare class PolylineExecutor extends CommandExecutor { constructor(command: Command); exec(commander: Commander): Graph; help(): string; } export default LineExecutor;