interface IOptions {
    collaborative?: boolean;
    disableDocumentWideUndoRedo?: boolean;
    nbformat?: INotebookContent;
    readonly: boolean;
}

Hierarchy

  • IOptions
    • IOptions

Properties

collaborative?: boolean

Whether the model is collaborative or not.

disableDocumentWideUndoRedo?: boolean

Defines if the document can be undo/redo.

Default: true

nbformat?: INotebookContent
readonly: boolean