-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathglobal-overrides.d.ts
More file actions
25 lines (24 loc) · 700 Bytes
/
Copy pathglobal-overrides.d.ts
File metadata and controls
25 lines (24 loc) · 700 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import type {
App,
AppDetailsStore,
AppStore,
LocalizationManager,
NavigationStore,
NotificationStore,
SteamClient,
SteamUIStore,
} from 'steam-types';
// TODO: I don't know if the import from steam-types now fully works or if we should import from dist so i will leave both here for now.
declare global {
let App: App;
let appDetailsStore: AppDetailsStore;
let appStore: AppStore;
let FocusNavController: unknown;
let LocalizationManager: LocalizationManager;
let NavigationStore: NavigationStore;
let NotificationStore: NotificationStore;
let securityStore: unknown;
let settingsStore: unknown;
let SteamClient: SteamClient;
let SteamUIStore: SteamUIStore;
}