interface NullASTNode {
    children?: ASTNode[];
    length: number;
    offset: number;
    parent?: ASTNode;
    type: "null";
    value: null;
}

Hierarchy (view full)

Properties

children?: ASTNode[]
length: number
offset: number
parent?: ASTNode
type: "null"
value: null