Type alias CellChange

CellChange: SourceChange & {
    attachmentsChange?: {
        newValue?: nbformat.IAttachments;
        oldValue?: nbformat.IAttachments;
    };
    executionCountChange?: {
        newValue?: number;
        oldValue?: number;
    };
    executionStateChange?: {
        newValue?: IExecutionState;
        oldValue?: IExecutionState;
    };
    metadataChange?: MapChanges;
    outputsChange?: Delta<Y.Map<any>>;
    streamOutputChange?: Delta<Y.Text>;
}

Definition of the shared Cell changes.

Generated using TypeDoc