interface PropertyDefinition {
    computed: boolean;
    key: Expression | PrivateIdentifier;
    leadingComments?: Comment[];
    loc?: null | SourceLocation;
    range?: [number, number];
    static: boolean;
    trailingComments?: Comment[];
    type: "PropertyDefinition";
    value?: null | Expression;
}

Hierarchy (View Summary)

Properties

computed: boolean
leadingComments?: Comment[]
loc?: null | SourceLocation
range?: [number, number]
static: boolean
trailingComments?: Comment[]
type: "PropertyDefinition"
value?: null | Expression