[ FIX ] : Correct type annotations for timeout variables in OrbDemo.vue

This commit is contained in:
David Haz
2026-01-05 14:34:25 +02:00
parent 099f0c9190
commit 45a7bc46c2

View File

@@ -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<typeof setTimeout>;
let hoverIntensityTimeout: ReturnType<typeof setTimeout>;
watch(hue, newValue => {
clearTimeout(hueTimeout);