Interface IUnrecognizedCell

An unrecognized cell.

interface IUnrecognizedCell {
    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.