Technical Elements Documentation
    Preparing search index...

    Interface ComponentDependency

    Interface for a dependency between components within a system.

    SY-B5

    interface ComponentDependency {
        componentA: string;
        componentB: string;
        description?: string;
        details?: string;
        impact?: string;
        system: systems_analysis.SystemReference;
        type: string;
    }

    Hierarchy

    • Unique
      • ComponentDependency
    Index

    Properties

    componentA: string

    The first component in the dependency relationship.

    componentB: string

    The second component in the dependency relationship.

    description?: string

    Description of the dependency.

    details?: string

    Additional details about the dependency.

    impact?: string

    The impact of this dependency on component performance.

    The system this dependency exists within.

    type: string

    The type of dependency.