SGraphCommand.d.ts 254 B

123456
  1. import { SUndoCommand } from "@persagy-web/base/lib";
  2. import { SGraphScene } from "../SGraphScene";
  3. export declare abstract class SGraphCommand extends SUndoCommand {
  4. scene: SGraphScene | null;
  5. protected constructor(scene: SGraphScene | null);
  6. }