summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKurt Himebauch <136133082+xXJSONDeruloXx@users.noreply.github.com>2026-09-10 15:41:39 -0400
committerKurt Himebauch <136133082+xXJSONDeruloXx@users.noreply.github.com>2026-09-10 15:41:39 -0400
commit3817fb2ddd47baff55b9e4030731dbdda6948a3b (patch)
tree5ce38840fbdcfd39a4c893cd862e5aa6561e9700
parent868438873136c1b0a6c323b1a55e69e6b2f855ca (diff)
downloaddecky-lsfg-vk-3817fb2ddd47baff55b9e4030731dbdda6948a3b.tar.gz
decky-lsfg-vk-3817fb2ddd47baff55b9e4030731dbdda6948a3b.zip
refactor: simplify workaround api types
-rw-r--r--src/api/lsfgApi.ts2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/api/lsfgApi.ts b/src/api/lsfgApi.ts
index 3e93620..aeaa502 100644
--- a/src/api/lsfgApi.ts
+++ b/src/api/lsfgApi.ts
@@ -66,7 +66,6 @@ export interface WorkaroundStateResult extends ApiResult {
state?: WorkaroundState | null;
wrapper_path?: string;
wrapper_owned?: boolean;
- shortcut_exe?: string | null;
command_token_added?: boolean;
}
@@ -160,7 +159,6 @@ export const getWorkaroundState = callable<[string], WorkaroundStateResult>("get
export const setWorkaroundState = callable<[
string,
WorkaroundState,
- string | null | undefined,
boolean,
], WorkaroundStateResult>("set_workaround_state");
export const removeWorkaroundState = callable<[string], WorkaroundStateResult>("remove_workaround_state");