interface TSParameterProperty {
    accessibility?: null | "public" | "private" | "protected";
    decorators?: null | Decorator[];
    end?: null | number;
    extra?: Record<string, unknown>;
    innerComments?: null | Comment[];
    leadingComments?: null | Comment[];
    loc?: null | SourceLocation;
    override?: null | boolean;
    parameter: AssignmentPattern | Identifier;
    range?: [number, number];
    readonly?: null | boolean;
    start?: null | number;
    trailingComments?: null | Comment[];
    type: "TSParameterProperty";
}

Hierarchy (view full)

Properties

accessibility?: null | "public" | "private" | "protected"
decorators?: null | Decorator[]
end?: null | number
extra?: Record<string, unknown>
innerComments?: null | Comment[]
leadingComments?: null | Comment[]
loc?: null | SourceLocation
override?: null | boolean
range?: [number, number]
readonly?: null | boolean
start?: null | number
trailingComments?: null | Comment[]
type: "TSParameterProperty"