This interface defines the properties of a Graph AST Node.

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

Hierarchy (view full)

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.

Generated using TypeDoc