feat: adding possibility to create steam shortcut

This commit is contained in:
Chubby Granny Chaser
2025-05-13 22:57:33 +01:00
parent 00065ab0c9
commit 86de5aa89e
14 changed files with 342 additions and 24 deletions

View File

@@ -53,3 +53,22 @@ export interface SteamAppDetails {
ids: number[];
};
}
export interface SteamShortcut {
appid: number;
appname: string;
Exe: string;
StartDir: string;
icon: string;
ShortcutPath: string;
LaunchOptions: string;
IsHidden: boolean;
AllowDesktopConfig: boolean;
AllowOverlay: boolean;
OpenVR: boolean;
Devkit: boolean;
DevkitGameID: string;
DevkitOverrideAppID: boolean;
LastPlayTime: boolean;
FlatpakAppID: string;
}