export const Debounce = (fn: any, ms = 300) => { let timeoutId: ReturnType; return function (this: any, ...args: any[]): void { clearTimeout(timeoutId); timeoutId = setTimeout(() => fn.apply(this, args), ms); }; };