Skip to content

Commit

Permalink
add @types/node
Browse files Browse the repository at this point in the history
  • Loading branch information
emuell committed Jan 3, 2024
1 parent 6c7c36b commit 85cff77
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 1 deletion.
16 changes: 16 additions & 0 deletions package-lock.json

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

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
},
"devDependencies": {
"@tauri-apps/cli": "^1.5.2",
"@types/node": "^20.10.6",
"typescript": "^5.2.2",
"vite": "^4.4.11"
},
Expand Down
2 changes: 1 addition & 1 deletion src/components/app-footer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export class ResticBrowserAppFooter extends MobxLitElement {
constructor() {
super();

let messageTimeoutId: number | undefined = undefined;
let messageTimeoutId: NodeJS.Timeout | undefined = undefined;
mobx.autorun(() => {
let newMessage = "";
if (appState.pendingFileDumps.length) {
Expand Down

0 comments on commit 85cff77

Please sign in to comment.