banira
    Preparing search index...

    Interface ClassField

    interface ClassField {
        default?: string;
        deprecated?: string | boolean;
        description?: string;
        inheritedFrom?: { name: string };
        kind: "field";
        name: string;
        privacy: "private" | "protected" | "public";
        readonly?: boolean;
        static?: boolean;
        type?: { text: string };
    }
    Index

    Properties

    default?: string
    deprecated?: string | boolean

    Present when the field is marked @deprecated; the string is the deprecation note, if any.

    description?: string
    inheritedFrom?: { name: string }
    kind: "field"
    name: string
    privacy: "private" | "protected" | "public"
    readonly?: boolean
    static?: boolean
    type?: { text: string }