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

Hierarchy (view full)

Properties

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