Interface JupyterExecuteStartOutputEvent

Emitted when the cell starts executing.

interface JupyterExecuteStartOutputEvent {
    executionCount?: number;
    kernelId?: string;
}

Properties

executionCount?: number

The execution count to use for the cell after execution.

kernelId?: string

The kernel that started this cell.