declare module "*.svg" { const content: string; export default content; } declare module "*.png" { const content: string; export default content; } declare module "*.jpg" { const content: string; export default content; } interface SteamAppDetails { strLaunchOptions?: string; strShortcutLaunchOptions?: string; strShortcutExe?: string; strShortcutStartDir?: string; } interface SteamAppDetailsRegistration { unregister: () => void; } interface SteamApps { RegisterForAppDetails( appId: number, callback: (details: SteamAppDetails) => void, ): SteamAppDetailsRegistration; SetAppLaunchOptions(appId: number, options: string): void | Promise; SetShortcutLaunchOptions(appId: number, options: string): void | Promise; SetShortcutExe(appId: number, executable: string): void | Promise; TerminateApp(appId: string, param1: boolean): void; GetAllShortcuts?(): Promise; } declare const SteamClient: { Apps: SteamApps; };