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