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
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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);