diff options
| author | 2026-01-14 03:48:55 +0000 | |
|---|---|---|
| committer | 2026-01-14 03:48:55 +0000 | |
| commit | 956b15693ebe52a75d6b27c59bd14b47764d0110 (patch) | |
| tree | 2948b83f10bd9f3a2b5a34226e6c6799c6c83404 /ui/src/stores/auth.svelte.ts | |
| parent | caeec0304d0f6c592b6ce24d8c6c932eea6a5225 (diff) | |
| download | DropOut-956b15693ebe52a75d6b27c59bd14b47764d0110.tar.gz DropOut-956b15693ebe52a75d6b27c59bd14b47764d0110.zip | |
chore: specify type for pollInterval in AuthState class
Diffstat (limited to 'ui/src/stores/auth.svelte.ts')
| -rw-r--r-- | ui/src/stores/auth.svelte.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/src/stores/auth.svelte.ts b/ui/src/stores/auth.svelte.ts index 9df8835..3d58245 100644 --- a/ui/src/stores/auth.svelte.ts +++ b/ui/src/stores/auth.svelte.ts @@ -12,7 +12,7 @@ export class AuthState { msLoginLoading = $state(false); msLoginStatus = $state("Waiting for authorization..."); - private pollInterval: any; + private pollInterval: ReturnType<typeof setInterval> | null = null; private isPollingRequestActive = false; async checkAccount() { |