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

    Interface NotebookEdit

    Represents an edit operation performed on a notebook document.

    Currently supports content updates that replace the entire notebook content. Used for tracking edit history and implementing undo/redo functionality.

    const edit: NotebookEdit = {
    type: "content-update",
    content: new TextEncoder().encode(JSON.stringify(notebookData))
    };
    document.makeEdit(edit);
    interface NotebookEdit {
        content: Uint8Array;
        type: "content-update";
    }
    Index

    Properties

    Properties

    content: Uint8Array

    Binary representation of the notebook content after the edit

    type: "content-update"

    The type of edit operation - currently only content updates are supported