TESSA Web API
    Preparing search index...

    Interface IViewExtensionMetadata

    Метаданные расширения.

    interface IViewExtensionMetadata {
        condition: null | string;
        data: IStorage;
        order: number;
        typeName: string;
        clone(): IViewExtensionMetadata;
        deserializeFromStorage(
            storage: IStorage,
            context?: StorageSerializableContext,
        ): this;
        isSealed(): boolean;
        seal(): this;
        serializeToStorage(
            storage?: IStorage,
            context?: StorageSerializableContext,
        ): IStorage;
    }

    Hierarchy (View Summary)

    Implemented by

    Index

    Properties

    condition: null | string

    Условия попадания объекта метаданных в результирующие метаданные.

    data: IStorage

    Настройки расширения.

    order: number

    Порядок расширения в списке.

    typeName: string

    Наименование типа расширения.

    Methods

    • Returns boolean

    • Returns this