Interface ICodeCellJupyterMetadata

The Jupyter metadata namespace for code cells.

interface ICodeCellJupyterMetadata {
    outputs_hidden: boolean;
    source_hidden: boolean;
    [key: string]: undefined | PartialJSONValue;
}

Hierarchy (View Summary)

Indexable

Properties

outputs_hidden: boolean

Whether the outputs are hidden. See https://github.com/jupyter/nbformat/issues/137.

source_hidden: boolean

Whether the source is hidden.