2023-12-03 11:06:42 +00:00
|
|
|
export enum CurrentTab {
|
|
|
|
EmptyFolders,
|
|
|
|
EmptyFiles,
|
|
|
|
SimilarImages,
|
|
|
|
Settings
|
|
|
|
}
|
|
|
|
|
|
|
|
export enum TypeOfOpenedItem {
|
|
|
|
CurrentItem,
|
|
|
|
ParentItem,
|
|
|
|
}
|
|
|
|
|
|
|
|
export struct ProgressToSend {
|
|
|
|
current_progress: int,
|
|
|
|
all_progress: int,
|
|
|
|
step_name: string,
|
|
|
|
}
|
|
|
|
|
|
|
|
export struct MainListModel {
|
|
|
|
checked: bool,
|
|
|
|
header_row: bool,
|
|
|
|
selected_row: bool,
|
|
|
|
val: [string]
|
|
|
|
}
|
|
|
|
|
|
|
|
export enum BottomPanelVisibility {
|
|
|
|
NotVisible,
|
|
|
|
TextErrors,
|
|
|
|
Directories
|
2024-01-21 15:10:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export struct IncludedDirectoriesModel {
|
|
|
|
path: string,
|
|
|
|
referenced_folder: bool,
|
|
|
|
selected_row: bool,
|
|
|
|
}
|
|
|
|
|
|
|
|
export struct ExcludedDirectoriesModel {
|
|
|
|
path: string,
|
|
|
|
selected_row: bool,
|
2023-12-03 11:06:42 +00:00
|
|
|
}
|