Theia API Documentation v1.65.0
    Preparing search index...
    interface CellOutputWebview {
        id: string;
        onDidRenderOutput: Event<OutputRenderEvent>;
        cellsChanged(cellEvent: NotebookContentChangedEvent[]): void;
        dispose(): void;
        init(notebook: NotebookModel, editor: NotebookEditorWidget): void;
        isAttached(): boolean;
        render(): ReactNode;
        requestOutputPresentationUpdate(
            cellHandle: number,
            output: NotebookCellOutputModel,
        ): void;
        setCellHeight(cell: NotebookCellModel, height: number): void;
    }

    Hierarchy (View Summary)

    Implemented by

    Index

    Properties

    id: string
    onDidRenderOutput: Event<OutputRenderEvent>

    Methods

    • Dispose this object.

      Returns void