From 45a7bc46c2553aeb6a3c04c242ce6181fc47f415 Mon Sep 17 00:00:00 2001 From: David Haz Date: Mon, 5 Jan 2026 14:34:25 +0200 Subject: [PATCH] [ FIX ] : Correct type annotations for timeout variables in OrbDemo.vue --- src/demo/Backgrounds/OrbDemo.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/demo/Backgrounds/OrbDemo.vue b/src/demo/Backgrounds/OrbDemo.vue index 6ed2421..cebd469 100644 --- a/src/demo/Backgrounds/OrbDemo.vue +++ b/src/demo/Backgrounds/OrbDemo.vue @@ -57,8 +57,8 @@ const forceHoverState = ref(false); const debouncedHue = ref(100); const debouncedHoverIntensity = ref(0.5); -let hueTimeout: number; -let hoverIntensityTimeout: number; +let hueTimeout: ReturnType; +let hoverIntensityTimeout: ReturnType; watch(hue, newValue => { clearTimeout(hueTimeout);