Type alias CombinedEffectResultInCompletedSuccessState<Input, Result>

CombinedEffectResultInCompletedSuccessState<Input, Result>: {
    currentInput: Input | NoValueType;
    result: Result;
    resultInput: Input | NoValueType;
    resultPending: false;
}

Type representing a CombinedEffectResult in it's success state (non-pending, hece completed effect)

Type Parameters

  • Input

    specifies the input type for the effect

  • Result

    specifies the result type of the effect

Type declaration

Generated using TypeDoc