mirror of
https://github.com/neosubhamoy/neodlp.git
synced 2026-03-22 13:45:50 +05:30
refactor: use global flatpak detection
This commit is contained in:
@@ -152,3 +152,12 @@ export interface LogsStore {
|
||||
addLog: (log: Log) => void;
|
||||
clearLogs: () => void;
|
||||
}
|
||||
|
||||
export interface EnvironmentStore {
|
||||
isFlatpak: boolean;
|
||||
isAppimage: boolean;
|
||||
appDirPath: string | null;
|
||||
setIsFlatpak: (isFlatpak: boolean) => void;
|
||||
setIsAppimage: (isAppimage: boolean) => void;
|
||||
setAppDirPath: (path: string) => void;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user