can now export maps of a bs version

This commit is contained in:
MathieuG-P
2022-08-06 20:11:27 +02:00
parent dae85a1c34
commit b2c58e47ca
21 changed files with 420 additions and 1305 deletions
+2 -1
View File
@@ -1,2 +1,3 @@
export { IpcRequest } from "./ipc-request.interface"
export { IpcResponse } from "./ipc-response.interface"
export { IpcResponse } from "./ipc-response.interface"
export { OpenSaveDialogOption } from "../os/dialog.model"
@@ -0,0 +1,3 @@
import { BSVersion } from "shared/bs-version.interface";
export interface ExportVersionMapsOption {version: BSVersion, path: string};
+4
View File
@@ -0,0 +1,4 @@
export interface OpenSaveDialogOption {
filename?: string,
filters?: Electron.FileFilter[]
}