Interface IBaseCell

The base cell interface.

interface IBaseCell {
    cell_type: string;
    metadata: Partial<ICellMetadata>;
    source: MultilineString;
}

Hierarchy (view full)

Properties

cell_type: string

String identifying the type of cell.

Cell-level metadata.

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