Type alias MaybeResultWithInput<Input, Result>

MaybeResultWithInput<Input, Result>: {
    result: Result | NoValueType;
    resultInput: Input | NoValueType;
}

Type corresponding to ResultWithInput, but with potential NO_VALUE for result and/or resultInput

Type Parameters

  • Input

  • Result

Type declaration

  • result: Result | NoValueType

    the received result

  • resultInput: Input | NoValueType

    the input that produced the result

Generated using TypeDoc