webcad-api/types/Add-on/LoadConfig.d.ts

16 lines
624 B
TypeScript
Raw Normal View History

2020-09-24 11:04:12 +08:00
import { Command } from "../Editor/CommandMachine";
2021-04-06 17:12:55 +08:00
import { IConfigStore } from "../UI/Store/BoardStore";
2020-09-24 11:04:12 +08:00
export declare class DownLoadDConfig implements Command {
exec(): Promise<void>;
}
export declare class UpLoadConfig implements Command {
exec(): Promise<void>;
}
export declare class DownloadHoleOption implements Command {
exec(): Promise<void>;
}
export declare class UploadHoleOption implements Command {
exec(): Promise<void>;
}
2021-04-06 17:12:55 +08:00
export declare function ImportConfig(type: string, store: IConfigStore, newName: string, callback?: () => void): Promise<void>;
2020-09-24 11:04:12 +08:00
//# sourceMappingURL=LoadConfig.d.ts.map