1234567891011121314 |
- import { SGraphCommand } from "./SGraphCommand";
- import { SGraphItem } from "../SGraphItem";
- import { SGraphScene } from "../SGraphScene";
- export declare class SGraphPropertyCommand<T> extends SGraphCommand {
- readonly command: string;
- item: SGraphItem;
- propName: string;
- oldProp: T;
- newProp: T;
- constructor(scene: SGraphScene, item: SGraphItem, propName: string, oldProp: T, newProp: T);
- redo(): void;
- undo(): void;
- toString(): string;
- }
|