Merge pull request #89 from SteamDeckHomebrew/RodoMa92-patch-1

fix: the typescript compiler was eating the enum
This commit is contained in:
Marco Rodolfi
2023-06-27 15:38:13 +02:00
committed by GitHub

View File

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