import { Command, Commander, CommandExecutor } from "./core"; import { Graph } from "../core"; /** * polygon 多边形命令执行器 */ export declare class PolygonExecutor extends CommandExecutor { constructor(command: Command); exec(commander: Commander): Graph; help(): string; } /** * triangle 三角形命令执行器 */ export declare class TriangleExecutor extends CommandExecutor { constructor(command: Command); exec(commander: Commander): Graph; help(): string; } /** * rectangle 多边形命令执行器 */ export declare class RectangleExecutor extends CommandExecutor { constructor(command: Command); exec(commander: Commander): Graph; help(): string; } export default PolygonExecutor;