fix: the typescript compiler was eating the enum

If not defined with a const keyword
This commit is contained in:
Marco Rodolfi
2023-06-27 15:38:04 +02:00
committed by GitHub
parent c213204ff4
commit c9b583945c

View File

@@ -57,7 +57,7 @@ export interface FilePickerRes {
realpath: string;
}
export enum FileSelectionType {
export const enum FileSelectionType {
FILE,
FOLDER,
}