summaryrefslogtreecommitdiff
path: root/src/api/lsfgApi.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/api/lsfgApi.ts')
-rw-r--r--src/api/lsfgApi.ts9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/api/lsfgApi.ts b/src/api/lsfgApi.ts
index cf09ed0..12e284e 100644
--- a/src/api/lsfgApi.ts
+++ b/src/api/lsfgApi.ts
@@ -7,8 +7,17 @@ interface ApiResult {
error?: string | null;
}
+export interface FlatpakCleanupResult extends ApiResult {
+ removed_branches?: string[];
+ preserved_branches?: string[];
+ removed_filesystem_grants?: string[];
+ preserved_filesystem_grants?: string[];
+ ownership_uncertain?: boolean;
+}
+
export interface InstallationResult extends ApiResult {
removed_files?: string[];
+ flatpak_cleanup?: FlatpakCleanupResult;
}
export interface InstallationStatus {