ts-graphviz
    Preparing search index...

    Interface GraphASTPropatiesBeta

    This interface defines the properties of a Graph AST Node.

    interface GraphASTPropaties {
        directed: boolean;
        id?: LiteralASTNode<string>;
        location?: FileRange;
        strict: boolean;
    }

    Hierarchy (View Summary)

    Index

    Properties

    directed: boolean

    A boolean indicating whether the graph is directed.

    id?: LiteralASTNode<string>

    An optional identifier for the Graph AST Node.

    location?: FileRange

    The start and end location of the AST object.

    strict: boolean

    A boolean indicating whether the graph is strict.