ts-graphviz
    Preparing search index...

    Interface ASTBaseParentNode<STMT>Beta

    ASTBaseParentNode represents a parent node that has some child nodes.

    interface ASTBaseParentNode<STMT extends ASTBaseNode = ASTBaseNode> {
        children: STMT[];
        type: ASTType;
    }

    Type Parameters

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    children: STMT[]
    type: ASTType

    Every leaf interface that extends ASTBaseNode must specify a type property.