KC's Workspace
    Preparing search index...
    interface PropertyDefinition {
        accessibility?: TSAccessibility | null;
        computed: boolean;
        declare?: boolean;
        decorators: Decorator[];
        definite?: boolean;
        end: number;
        key: PropertyKey;
        optional?: boolean;
        override?: boolean;
        parent?: Node;
        range?: [number, number];
        readonly?: boolean;
        start: number;
        static: boolean;
        type: PropertyDefinitionType;
        typeAnnotation?: TSTypeAnnotation | null;
        value: Expression | null;
    }

    Hierarchy (View Summary)

    • Span
      • PropertyDefinition
    Index

    Properties

    accessibility?: TSAccessibility | null
    computed: boolean
    declare?: boolean
    decorators: Decorator[]
    definite?: boolean
    end: number
    optional?: boolean
    override?: boolean
    parent?: Node
    range?: [number, number]
    readonly?: boolean
    start: number
    static: boolean
    typeAnnotation?: TSTypeAnnotation | null
    value: Expression | null