Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Debounce async functions #898

Open
throrin19 opened this issue Dec 13, 2024 · 0 comments
Open

Debounce async functions #898

throrin19 opened this issue Dec 13, 2024 · 0 comments

Comments

@throrin19
Copy link

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 :

// just a silly example, normally the debounced function return request result
const requestAction = debounce(
    async () => 1,
    1000,
);

const result = await requestAction(); // TS said requestAction is not async
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant