diff options
| author | Kurt Himebauch <136133082+xXJSONDeruloXx@users.noreply.github.com> | 2025-12-06 21:54:45 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-12-06 21:54:45 -0500 |
| commit | eb4cb1f5aa2f76bc7dac8d48c583928a1f3f4047 (patch) | |
| tree | 85274d33020adbac5b804480032eef895eb2ba08 /src/api/index.ts | |
| parent | 1369909692f0c3eb617f3125027b681cef373ecd (diff) | |
| parent | e6c32d27db7075d66ecef33f368bdd69d3b035d0 (diff) | |
| download | Decky-Framegen-eb4cb1f5aa2f76bc7dac8d48c583928a1f3f4047.tar.gz Decky-Framegen-eb4cb1f5aa2f76bc7dac8d48c583928a1f3f4047.zip | |
Merge pull request #148 from xXJSONDeruloXx/path-overrides
initial path override ui and be
Diffstat (limited to 'src/api/index.ts')
| -rw-r--r-- | src/api/index.ts | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/api/index.ts b/src/api/index.ts index 11e4213..df52fee 100644 --- a/src/api/index.ts +++ b/src/api/index.ts @@ -21,3 +21,18 @@ export const listInstalledGames = callable< >("list_installed_games"); export const logError = callable<[string], void>("log_error"); + +export const getPathDefaults = callable< + [], + { home: string; steam_common?: string } +>("get_path_defaults"); + +export const runManualPatch = callable< + [string], + { status: string; message?: string; output?: string } +>("manual_patch_directory"); + +export const runManualUnpatch = callable< + [string], + { status: string; message?: string; output?: string } +>("manual_unpatch_directory"); |
