let timer: any; const fetchSearchList = () => { if (timer) { clearTimeout(timer); timer = null; } timer = setTimeout(async () => { const { list, totalPages } = await searchForContractPageList({}); }, 300); };