12 lines
340 B
TypeScript
12 lines
340 B
TypeScript
![]() |
import { Command } from '../Editor/CommandMachine';
|
||
|
export declare class Undo implements Command {
|
||
|
NoHistory: boolean;
|
||
|
Transparency: boolean;
|
||
|
exec(): Promise<void>;
|
||
|
}
|
||
|
export declare class Redo implements Command {
|
||
|
NoHistory: boolean;
|
||
|
Transparency: boolean;
|
||
|
exec(): Promise<void>;
|
||
|
}
|
||
|
//# sourceMappingURL=Undo.d.ts.map
|