The options used to initialize a CellModel.

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

Type Parameters

Hierarchy (view full)

Properties

cell_type?: string

The cell type

id?: string

A unique identifier for the model.

sharedModel?: T

The cell shared model.

trusted?: boolean

Whether the cell is trusted or not.