Type alias CombinedEffectResultInSuccessState<Input, Result>

CombinedEffectResultInSuccessState<Input, Result>: {
    currentInput: Input | NoValueType;
    result: Result;
    resultInput: Input | NoValueType;
    resultPending: boolean;
}

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

Type Parameters

  • Input

    specifies the input type for the effect

  • Result

    specifies the result type of the effect

Type declaration

Generated using TypeDoc