You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It is possible to debounce an async function and return the result ? Actually If I test like that TS said the debounced function is not async :
// just a silly example, normally the debounced function return request resultconstrequestAction=debounce(async()=>1,1000,);constresult=awaitrequestAction();// TS said requestAction is not async
The text was updated successfully, but these errors were encountered:
Hello,
It is possible to debounce an async function and return the result ? Actually If I test like that TS said the debounced function is not async :
The text was updated successfully, but these errors were encountered: