Interface CellOutputWebview

interface CellOutputWebview {
    id: string;
    onDidRenderOutput: Event<OutputRenderEvent>;
    attachWebview(): void;
    cellsChanged(cellEvent): void;
    init(notebook, editor): void;
    isAttached(): boolean;
    render(): ReactNode;
    requestOutputPresentationUpdate(cellHandle, output): void;
    setCellHeight(cell, height): void;
}

Hierarchy

  • Disposable
    • CellOutputWebview

Properties

id: string
onDidRenderOutput: Event<OutputRenderEvent>

Methods