Takomo v9.0.1
    Preparing search index...

    Type Alias SuccessfulUpdateCustomStackResult<STATE>

    Represents a successful result of updating a custom stack.

    Contains the updated state of the custom stack after the operation completes successfully.

    type SuccessfulUpdateCustomStackResult<STATE extends CustomStackState> = {
        success: true;
        updatedState: STATE;
    }

    Type Parameters

    Index

    Properties

    success: true
    updatedState: STATE

    The updated state of the custom stack after the update operation. This reflects the new state of the stack with all changes applied.