The options used to initialize a AttachmentsCellModel.

interface IOptions<T> {
    cell_type?: string;
    contentFactory?: AttachmentsCellModel.IContentFactory;
    id?: string;
    sharedModel?: T;
    trusted?: boolean;
}

Type Parameters

Hierarchy (view full)

Properties

cell_type?: string

The cell type

The factory for attachment model creation.

id?: string

A unique identifier for the model.

sharedModel?: T

The cell shared model.

trusted?: boolean

Whether the cell is trusted or not.