chore(web): upgrade dependencies (#7471)

This commit is contained in:
Ben McCann
2024-02-27 11:01:11 -08:00
committed by GitHub
parent b15eec7ca7
commit 79409438a7
4 changed files with 133 additions and 133 deletions

View File

@@ -46,8 +46,8 @@
let allPeople: PersonResponseDto[] = [];
// timers
let loaderLoadingDoneTimeout: NodeJS.Timeout;
let automaticRefreshTimeout: NodeJS.Timeout;
let loaderLoadingDoneTimeout: ReturnType<typeof setTimeout>;
let automaticRefreshTimeout: ReturnType<typeof setTimeout>;
const dispatch = createEventDispatcher<{
close: void;

View File

@@ -59,7 +59,7 @@
}
};
let removeNotificationTimeout: NodeJS.Timeout | undefined;
let removeNotificationTimeout: ReturnType<typeof setTimeout> | undefined;
onMount(() => {
removeNotificationTimeout = setTimeout(discard, notificationInfo.timeout);