Skip to content

Commit

Permalink
chore: typescript 5.3 issues
Browse files Browse the repository at this point in the history
  • Loading branch information
blakebyrnes committed Feb 1, 2024
1 parent c79447f commit 4be5e0c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/connections/ConnectionToHeroClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export default class ConnectionToHeroClient
return this.core?.clearIdleConnectionsAfterMillis ?? 0;
}

private autoShutdownTimer: NodeJS.Timer;
private autoShutdownTimer: NodeJS.Timeout;
private readonly sessionIdToRemoteEvents = new Map<string, RemoteEvents>();
private activeCommandMessageIds = new Set<string>();

Expand Down
2 changes: 1 addition & 1 deletion core/lib/DomStateListener.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export default class DomStateListener extends TypedEventEmitter<IDomStateEvents>

private batchAssertionsById = new Map<string, IBatchAssertion>();
private commandFnsById = new Map<string, () => Promise<any>>();
private readonly checkInterval: NodeJS.Timer;
private readonly checkInterval: NodeJS.Timeout;
private lastResults: any;
private isStopping = false;
private isCheckingState = false;
Expand Down

0 comments on commit 4be5e0c

Please sign in to comment.