interface ClassPrivateProperty {
    decorators?: null | Decorator[];
    definite?: null | boolean;
    end?: null | number;
    extra?: Record<string, unknown>;
    innerComments?: null | Comment[];
    key: PrivateName;
    leadingComments?: null | Comment[];
    loc?: null | SourceLocation;
    range?: [number, number];
    readonly?: null | boolean;
    start?: null | number;
    static: boolean;
    trailingComments?: null | Comment[];
    type: "ClassPrivateProperty";
    typeAnnotation?: null | Noop | TSTypeAnnotation | TypeAnnotation;
    value?: null | Expression;
    variance?: null | Variance;
}

Hierarchy (view full)

Properties

decorators?: null | Decorator[]
definite?: null | boolean
end?: null | number
extra?: Record<string, unknown>
innerComments?: null | Comment[]
leadingComments?: null | Comment[]
loc?: null | SourceLocation
range?: [number, number]
readonly?: null | boolean
start?: null | number
static: boolean
trailingComments?: null | Comment[]
type: "ClassPrivateProperty"
typeAnnotation?: null | Noop | TSTypeAnnotation | TypeAnnotation
value?: null | Expression
variance?: null | Variance