feat: implement new feature for enhanced user experience

This commit is contained in:
2026-05-11 16:56:57 +00:00
parent 0be4852f74
commit 106efb5d6e
94 changed files with 639 additions and 595 deletions
+1 -1
View File
@@ -2,7 +2,7 @@ export function debounce<T extends (...args: never[]) => void>(
func: T,
wait: number
): (...args: Parameters<T>) => void {
let timeout: NodeJS.Timeout | null = null
let timeout: ReturnType<typeof setTimeout> | null = null
return (...args: Parameters<T>) => {
if (timeout) {