Interface NotebookOutputItemChangedEvent

interface NotebookOutputItemChangedEvent {
    append: boolean;
    index: number;
    kind: OutputItem;
    outputId: string;
    outputItems: CellOutputItem[];
}

Properties

append: boolean
index: number
outputId: string
outputItems: CellOutputItem[]