Datalayer VS Code Extension - v0.0.17
    Preparing search index...

    Minimal cell model interface matching JupyterLab ICellModel.

    interface CellModel {
        sharedModel: {
            changed: SignalConnection<() => void>;
            getSource: () => string;
        };
        type: "code"
        | "markdown"
        | "raw";
    }
    Index

    Properties

    Properties

    sharedModel: { changed: SignalConnection<() => void>; getSource: () => string }

    Shared model providing source access and change signals.

    Type Declaration

    • changed: SignalConnection<() => void>

      Signal emitted when the cell content changes.

    • getSource: () => string

      Returns the cell source text.

    type: "code" | "markdown" | "raw"

    Cell type identifier.