summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKurt Himebauch <136133082+xXJSONDeruloXx@users.noreply.github.com>2026-09-10 16:38:38 -0400
committerKurt Himebauch <136133082+xXJSONDeruloXx@users.noreply.github.com>2026-09-10 16:38:38 -0400
commita69ab9976905640f816b3a84d13fbc5848ffae65 (patch)
treed045cd7c8b91470cc4fb15a28b2de0caecd429e7 /src
parenteb714e77e494e3af8163ffceac7cb6e6d788440c (diff)
downloaddecky-lsfg-vk-a69ab9976905640f816b3a84d13fbc5848ffae65.tar.gz
decky-lsfg-vk-a69ab9976905640f816b3a84d13fbc5848ffae65.zip
refactor: remove shortcut target api types
Diffstat (limited to 'src')
-rw-r--r--src/types.d.ts2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/types.d.ts b/src/types.d.ts
index e5db40d..ebcf32c 100644
--- a/src/types.d.ts
+++ b/src/types.d.ts
@@ -16,7 +16,6 @@ declare module "*.jpg" {
interface SteamAppDetails {
strLaunchOptions?: string;
strShortcutLaunchOptions?: string;
- strShortcutExe?: string;
strShortcutStartDir?: string;
}
@@ -31,7 +30,6 @@ interface SteamApps {
): SteamAppDetailsRegistration;
SetAppLaunchOptions(appId: number, options: string): void | Promise<void>;
SetShortcutLaunchOptions(appId: number, options: string): void | Promise<void>;
- SetShortcutExe(appId: number, executable: string): void | Promise<void>;
TerminateApp(appId: string, param1: boolean): void;
GetAllShortcuts?(): Promise<unknown[]>;
}