Interface IBaseCell

The base cell interface.

interface IBaseCell {
    cell_type: string;
    metadata: Partial<ICellMetadata>;
    source: MultilineString;
    [key: string]: undefined | PartialJSONValue;
}

Hierarchy (View Summary)

Indexable

Properties

cell_type: string

String identifying the type of cell.

Cell-level metadata.

Contents of the cell, represented as an array of lines.