ts-graphviz
    Preparing search index...

    Interface EdgeASTPropatiesBeta

    EdgeASTPropaties is an interface that defines the properties of an EdgeASTNode.

    interface EdgeASTPropaties {
        location?: FileRange;
        targets: [
            from: EdgeTargetASTNode,
            to: EdgeTargetASTNode,
            ...rest: EdgeTargetASTNode[],
        ];
    }

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    location?: FileRange

    The start and end location of the AST object.

    targets: [
        from: EdgeTargetASTNode,
        to: EdgeTargetASTNode,
        ...rest: EdgeTargetASTNode[],
    ]

    An array of EdgeTargetASTNodes. The EdgeTargetASTNode represents a node that is the target of an edge.