fix: cast setTimeout callback to any for type safety

v3.2
wxg0103 2025-09-19 10:47:09 +08:00
parent 15c4274294
commit 5c0dfa8c96
1 changed files with 1 additions and 1 deletions

View File

@ -190,7 +190,7 @@ const startStreamingOutput = () => {
} else if (loading.value === false && currentDisplayIndex.value >= fullContent.value.length) { } else if (loading.value === false && currentDisplayIndex.value >= fullContent.value.length) {
stopStreaming() stopStreaming()
} }
}, 50) // 50ms }, 50) as any
} }
// //