summaryrefslogtreecommitdiff
path: root/src/types.d.ts
diff options
context:
space:
mode:
authorxXJSONDeruloXx <danielhimebauch@gmail.com>2026-04-03 10:06:44 -0400
committerxXJSONDeruloXx <danielhimebauch@gmail.com>2026-04-03 10:07:18 -0400
commit3d813ea87335298be5a47de3441f410651851b71 (patch)
tree2a53a31f665d7d41df41d3470e35c714f155d8b1 /src/types.d.ts
parent9e45eca97948c77b3d443258419412e9914ffa46 (diff)
downloadDecky-Framegen-3d813ea87335298be5a47de3441f410651851b71.tar.gz
Decky-Framegen-3d813ea87335298be5a47de3441f410651851b71.zip
feat: add Steam game picker with one-click launch option setter
Diffstat (limited to 'src/types.d.ts')
-rw-r--r--src/types.d.ts10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/types.d.ts b/src/types.d.ts
index dfc0472..4077a9e 100644
--- a/src/types.d.ts
+++ b/src/types.d.ts
@@ -12,3 +12,13 @@ declare module "*.jpg" {
const content: string;
export default content;
}
+
+declare const SteamClient: {
+ Apps: {
+ RegisterForAppDetails(
+ appId: number,
+ callback: (details: { strLaunchOptions?: string }) => void
+ ): { unregister: () => void };
+ SetAppLaunchOptions(appId: number, options: string): void;
+ };
+};