Documentation
    Preparing search index...

    Object property metadata.

    interface IProperty {
        description: string | null;
        jsDocTags: IJsDocTagInfo[];
        key: IMetadataSchema;
        mutability?: "readonly" | null;
        value: IMetadataSchema;
    }
    Index

    Properties

    description: string | null

    JSDoc description.

    jsDocTags: IJsDocTagInfo[]

    JSDoc tags.

    Property key schema (string or symbol).

    mutability?: "readonly" | null

    Property mutability (readonly or mutable).

    Property value schema.