12345678910111213 |
- import { SPoint } from "@persagy-web/draw/lib";
- import { SGraphCommand, SGraphItem, SGraphScene } from "../index";
- export declare class SGraphPointListInsert extends SGraphCommand {
- readonly command: string;
- item: SGraphItem;
- pos: SPoint;
- index: number | null;
- pointList: SPoint[];
- constructor(scene: SGraphScene, item: SGraphItem, pointList: SPoint[], pos: SPoint, index?: number | null);
- redo(): void;
- undo(): void;
- toString(): string;
- }
|