Type alias EffectCompletedResultEvent<Input, Result, Error>

EffectCompletedResultEvent<Input, Result, Error>: Omit<EffectResultEvent<Input, Result, Error>, "completed"> & {
    completed: true;
}

Value-type for completed result events produced by EffectSignals. In contrast to EffectResultEvent, events with this type are only dispatched, if the effect has completed, hence it will never be fired for effects that never complete.

Type Parameters

  • Input

    specifies the input type for the effect

  • Result

    specifies the result type of the effect

  • Error

    specifies the error type of the effect

Generated using TypeDoc