15 lines
500 B
TypeScript
15 lines
500 B
TypeScript
import { Command } from "../Editor/CommandMachine";
|
|
export declare class Command_ResetCustomCommand implements Command {
|
|
exec(): Promise<void>;
|
|
}
|
|
export declare class Command_DownloadCustomCommand implements Command {
|
|
NoHistory: boolean;
|
|
Transparency: boolean;
|
|
exec(): Promise<void>;
|
|
}
|
|
export declare class Command_UploadCustomCommand implements Command {
|
|
NoHistory: boolean;
|
|
Transparency: boolean;
|
|
exec(): Promise<void>;
|
|
}
|
|
//# sourceMappingURL=ResetCustomCommand.d.ts.map
|