We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df3c430 commit 0c52901Copy full SHA for 0c52901
1 file changed
src/types/Global/stores/SteamUIStore/GamepadNavigationManager.ts
@@ -258,7 +258,7 @@ export interface BaseGamepadInputSource {
258
259
m_eNavigationSourceType: ENavigationSourceType;
260
261
- m_fLastActiveTime?: number;
+ m_fLastActiveTime?: number | undefined;
262
263
m_NavigationTypeChangeCallbacks: UnhandledButtonEventsCallbacks;
264
@@ -682,8 +682,7 @@ export interface Tree {
682
683
OnRootButtonDown(e: unknown): unknown;
684
685
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
686
- RegisterNavigationItem(e: unknown, t: unknown): () => any;
+ RegisterNavigationItem(e: unknown, t: unknown): () => unknown;
687
688
SetIsEmbeddedInLegacyTree(e: unknown): void;
689
0 commit comments