allSettled
allSettled<T>(unit: Event<T>, {scope: Scope, params?: T}): Promise<void>
allSettled<T>(unit: Effect<T, Done, Fail>, {scope: Scope, params?: T}): Promise<
| {status: 'done'; value: Done}
| {status: 'fail'; value: Fail}
>
Call provided unit in scope and wait for finishing all the triggered effects.
Arguments
note
Return value for effect is supported since effector 21.4.0