diff options
| author | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2025-09-26 20:14:44 -0400 |
|---|---|---|
| committer | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2025-09-26 20:14:44 -0400 |
| commit | 1cc6a781fe7d6c053b2eb59aa79766a859c66209 (patch) | |
| tree | 0946a308568ff7a144a6cec29719334a4e6d754b /src/api | |
| parent | 7d2322e637faae5ccfab58c54f7a13e6a5f7ea88 (diff) | |
| download | Decky-Framegen-1cc6a781fe7d6c053b2eb59aa79766a859c66209.tar.gz Decky-Framegen-1cc6a781fe7d6c053b2eb59aa79766a859c66209.zip | |
revised approach, pick dir then patch in plugin ui itself
Diffstat (limited to 'src/api')
| -rw-r--r-- | src/api/index.ts | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/api/index.ts b/src/api/index.ts index 1cc3285..df52fee 100644 --- a/src/api/index.ts +++ b/src/api/index.ts @@ -26,3 +26,13 @@ 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"); |
