interface MetaProperty {
    leadingComments?: Comment[];
    loc?: null | SourceLocation;
    meta: Identifier;
    property: Identifier;
    range?: [number, number];
    trailingComments?: Comment[];
    type: "MetaProperty";
}

Hierarchy (View Summary)

Properties

leadingComments?: Comment[]
loc?: null | SourceLocation
property: Identifier
range?: [number, number]
trailingComments?: Comment[]
type: "MetaProperty"