From 3d813ea87335298be5a47de3441f410651851b71 Mon Sep 17 00:00:00 2001 From: xXJSONDeruloXx Date: Fri, 3 Apr 2026 10:06:44 -0400 Subject: feat: add Steam game picker with one-click launch option setter --- src/types.d.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'src/types.d.ts') 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; + }; +}; -- cgit v1.2.3