Interface JupyterExecuteResultOutputEvent

Emitted when execution of the cell has finished.

interface JupyterExecuteResultOutputEvent {
    executionCount?: number;
    kernelId?: string;
    mimeData: Record<string, JupyterMimeOutputDataEventValue>;
}

Properties

executionCount?: number

The execution count of the cell.

kernelId?: string

The kernel that finished the cell.

mimeData: Record<string, JupyterMimeOutputDataEventValue>

The result of the cell, usually the last expression evaluated in the cell.