Interface NotebookOutputChangedEvent

interface NotebookOutputChangedEvent {
    append: boolean;
    index: number;
    kind: Output;
    outputs: CellOutput[];
}

Properties

append: boolean
index: number
kind: Output
outputs: CellOutput[]