Takomo v9.0.1
    Preparing search index...

    Type Alias SuccessfulGetCurrentStateResult<STATE>

    Represents a successful result of getting the current state of a custom stack.

    type SuccessfulGetCurrentStateResult<STATE extends CustomStackState> = {
        currentState?: STATE;
        success: true;
    }

    Type Parameters

    Index

    Properties

    currentState?: STATE

    The current state of the custom stack. This property is optional to allow flexibility for different custom stack implementations. An undefined value indicates that the stack does not exist.

    success: true