interface ObjectExpression {
    leadingComments?: Comment[];
    loc?: null | SourceLocation;
    properties: (Property | SpreadElement)[];
    range?: [number, number];
    trailingComments?: Comment[];
    type: "ObjectExpression";
}

Hierarchy (View Summary)

Properties

leadingComments?: Comment[]
loc?: null | SourceLocation
properties: (Property | SpreadElement)[]
range?: [number, number]
trailingComments?: Comment[]
type: "ObjectExpression"