2021-01-28 10:17:21 +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>;
|
|
|
|
}
|
2023-04-06 10:23:13 +08:00
|
|
|
export declare class SaveToLocal implements Command {
|
2021-01-28 10:17:21 +08:00
|
|
|
NoHistory: boolean;
|
|
|
|
exec(): Promise<void>;
|
|
|
|
}
|
2023-04-06 10:23:13 +08:00
|
|
|
/**
|
|
|
|
* 上传文件到文件的历史记录
|
|
|
|
* @param [fileDataStr] 文件经过压缩并且base64后的结果
|
|
|
|
*/
|
|
|
|
export declare function UploadFileHistory(fileDataStr?: string): void;
|
2021-01-28 10:17:21 +08:00
|
|
|
//# sourceMappingURL=Save.d.ts.map
|