Skip to content

Commit

Permalink
chore(stores): add SteamUIStore, securitystore
Browse files Browse the repository at this point in the history
  • Loading branch information
AAGaming00 committed Jul 28, 2024
1 parent 0457fee commit 5164f98
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/globals/stores.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { WindowRouter } from '../modules/Router';
import { AppDetails, LogoPosition, SteamAppOverview } from './SteamClient';
declare global {
interface Window {
Expand Down Expand Up @@ -46,5 +47,11 @@ declare global {
GetCustomLogoPosition: (app: SteamAppOverview) => LogoPosition | null;
SaveCustomLogoPosition: (app: SteamAppOverview, logoPositions: LogoPosition) => any;
};
SteamUIStore: {
GetFocusedWindowInstance: () => WindowRouter;
};
securitystore: {
IsLockScreenActive: () => boolean;
};
}
}

0 comments on commit 5164f98

Please sign in to comment.