interface AssignmentProperty {
    computed: boolean;
    key: Expression | PrivateIdentifier;
    kind: "init";
    leadingComments?: Comment[];
    loc?: null | SourceLocation;
    method: boolean;
    range?: [number, number];
    shorthand: boolean;
    trailingComments?: Comment[];
    type: "Property";
    value: Pattern;
}

Hierarchy (View Summary)

Properties

computed: boolean
kind: "init"
leadingComments?: Comment[]
loc?: null | SourceLocation
method: boolean
range?: [number, number]
shorthand: boolean
trailingComments?: Comment[]
type: "Property"
value: Pattern