Takomo v9.0.1
    Preparing search index...

    Type Alias FailedGetChangesResult

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

    Indicates that the change detection process encountered an error and could not determine what modifications would be required.

    type FailedGetChangesResult = {
        error?: Error;
        message?: string;
        success: false;
    }
    Index

    Properties

    error?: Error

    An optional error object containing detailed information about the failure.

    message?: string

    An optional human-readable message describing why change detection failed. This can help users understand what went wrong and how to resolve the issue.

    success: false