summaryrefslogtreecommitdiff
path: root/src/api/index.ts
diff options
context:
space:
mode:
authorxXJsonDeruloXx <danielhimebauch@gmail.com>2026-03-20 17:32:52 -0400
committerxXJsonDeruloXx <danielhimebauch@gmail.com>2026-03-20 17:32:52 -0400
commitd81bb130385114389728f849d0ab8cccf62b90d1 (patch)
treee4bdd986c3b18c62cae7311b92fb5ad5f9be86e6 /src/api/index.ts
parentca5db2231b8554d1377dd449f6fb9c736e3d6386 (diff)
downloadDecky-Framegen-d81bb130385114389728f849d0ab8cccf62b90d1.tar.gz
Decky-Framegen-d81bb130385114389728f849d0ab8cccf62b90d1.zip
Add Steam UI for prefix-managed integration
Diffstat (limited to 'src/api/index.ts')
-rw-r--r--src/api/index.ts5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/api/index.ts b/src/api/index.ts
index df52fee..f2e0ea1 100644
--- a/src/api/index.ts
+++ b/src/api/index.ts
@@ -20,6 +20,11 @@ export const listInstalledGames = callable<
{ status: string; games: { appid: string; name: string }[] }
>("list_installed_games");
+export const cleanupManagedGame = callable<
+ [string],
+ { status: string; message?: string; output?: string }
+>("cleanup_managed_game");
+
export const logError = callable<[string], void>("log_error");
export const getPathDefaults = callable<