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
In the documentation for queue, it is stated that the anonymous function pushed to the queue can return a promise. However, if you look at the definition for QueueWorker, it has a return type of just void
In the documentation for
queue
, it is stated that the anonymous function pushed to the queue can return a promise. However, if you look at the definition forQueueWorker
, it has a return type of justvoid
This causes a failure by the ESLint rule
no-misused-promises
This type definition should be updated to be
Promise<void> | void
The text was updated successfully, but these errors were encountered: