Type alias CellChange

CellChange: SourceChange & {
    attachmentsChange?: {
        newValue?: nbformat.IAttachments;
        oldValue?: nbformat.IAttachments;
    };
    executionCountChange?: {
        newValue?: number;
        oldValue?: number;
    };
    metadataChange?: MapChanges;
    outputsChange?: Delta<nbformat.IOutput[]>;
}

Definition of the shared Cell changes.

Generated using TypeDoc