Skip to content

Commit

Permalink
[deps]: Update @types/node to v18.19.50 (#599)
Browse files Browse the repository at this point in the history
* [deps]: Update @types/node to v18.19.50

* Adjust timer type

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Addison Beck <[email protected]>
  • Loading branch information
renovate[bot] and addisonbeck authored Sep 16, 2024
1 parent 3ecca16 commit 4ae4cba
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 8 deletions.
2 changes: 1 addition & 1 deletion jslib/electron/src/window.main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export class WindowMain {
win: BrowserWindow;
isQuitting = false;

private windowStateChangeTimer: NodeJS.Timer;
private windowStateChangeTimer: NodeJS.Timeout;
private windowStates: { [key: string]: any } = {};
private enableAlwaysOnTop = false;

Expand Down
21 changes: 16 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
"@types/jest": "29.5.11",
"@types/ldapjs": "2.2.5",
"@types/lowdb": "1.0.15",
"@types/node": "18.17.12",
"@types/node": "18.19.50",
"@types/node-fetch": "2.6.10",
"@types/node-forge": "1.3.11",
"@types/proper-lockfile": "4.1.4",
Expand Down
2 changes: 1 addition & 1 deletion src/main/messaging.main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { MenuMain } from "./menu.main";
const SyncCheckInterval = 60 * 1000; // 1 minute

export class MessagingMain {
private syncTimeout: NodeJS.Timer;
private syncTimeout: NodeJS.Timeout;

constructor(
private windowMain: WindowMain,
Expand Down

0 comments on commit 4ae4cba

Please sign in to comment.