2020-09-24 11:04:12 +08:00
|
|
|
import { Command } from '../Editor/CommandMachine';
|
|
|
|
export declare class Save implements Command {
|
|
|
|
NoHistory: boolean;
|
|
|
|
exec(): Promise<void>;
|
|
|
|
}
|
|
|
|
export declare class New implements Command {
|
|
|
|
NoHistory: boolean;
|
|
|
|
exec(): Promise<void>;
|
|
|
|
}
|
|
|
|
export declare class SaveAs implements Command {
|
|
|
|
NoHistory: boolean;
|
|
|
|
exec(): Promise<void>;
|
|
|
|
}
|
|
|
|
export declare class SaveAsBinary implements Command {
|
|
|
|
NoHistory: boolean;
|
|
|
|
exec(): Promise<void>;
|
|
|
|
}
|
2021-04-06 17:12:55 +08:00
|
|
|
export declare function UploadFileHistory(file: any, historyCount?: number): void;
|
2020-09-24 11:04:12 +08:00
|
|
|
//# sourceMappingURL=Save.d.ts.map
|