diff options
Diffstat (limited to 'src/api')
| -rw-r--r-- | src/api/index.ts | 5 |
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< |
