Takomo v9.0.1
    Preparing search index...

    Type Alias SuccessfulGetChangesResult

    Represents a successful result of detecting changes in a custom stack.

    Contains an optional list of changes that would be applied to the stack. An empty or undefined changes array indicates no modifications are needed.

    type SuccessfulGetChangesResult = {
        changes?: ReadonlyArray<CustomStackChange>;
        success: true;
    }
    Index

    Properties

    Properties

    changes?: ReadonlyArray<CustomStackChange>

    An optional list of changes that would be applied to the custom stack. If undefined or empty, it indicates that no changes are required. Each change describes a specific modification that would be made.

    success: true