export const debounce = ( func: (...args: FuncArgs) => void, delay: number, ) => { let timeoutId: ReturnType; return (...args: FuncArgs) => { clearTimeout(timeoutId); timeoutId = setTimeout(() => { func(...args); }, delay); }; };