Type alias CombinedEffectResultInErrorState<Input, Error>

CombinedEffectResultInErrorState<Input, Error>: {
    currentInput: Input;
    result: ToEffectError<Error> | EffectError<UnhandledEffectError>;
    resultInput: Input;
    resultPending: false;
}

Type representing a CombinedEffectResult in it's error state (non-pending)

Type Parameters

  • Input

    specifies the input type for the effect

  • Error

    specifies the error type of the effect

Type declaration

Generated using TypeDoc