interface PropertyASTNode {
    children: ASTNode[];
    colonOffset?: number;
    keyNode: StringASTNode;
    length: number;
    offset: number;
    parent?: ASTNode;
    type: "property";
    value?: string | number | boolean;
    valueNode?: ASTNode;
}

Hierarchy (view full)

Properties

children: ASTNode[]
colonOffset?: number
keyNode: StringASTNode
length: number
offset: number
parent?: ASTNode
type: "property"
value?: string | number | boolean
valueNode?: ASTNode