SUndoCommand.d.ts 301 B

12345678910
  1. export declare abstract class SUndoCommand {
  2. abstract get command(): string;
  3. desc: string;
  4. protected constructor(parent?: SUndoCommand | null);
  5. abstract undo(): void;
  6. abstract redo(): void;
  7. mergeWith(command: SUndoCommand): boolean;
  8. id(): number;
  9. toString(): string;
  10. }