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>;
|
|
|
|
}
|
|
|
|
export declare class SaveAsBinary implements Command {
|
|
|
|
NoHistory: boolean;
|
|
|
|
exec(): Promise<void>;
|
|
|
|
}
|
2022-02-16 11:15:31 +08:00
|
|
|
export declare function UploadFileHistory(file: any, historyCount?: number): void;
|
2021-01-28 10:17:21 +08:00
|
|
|
//# sourceMappingURL=Save.d.ts.map
|