Interface JupyterDisplayDataOutputEvent

Data to display to the user emitted during cell execution.

interface JupyterDisplayDataOutputEvent {
    displayId?: string;
    kernelId?: string;
    mimeData: Record<string, JupyterMimeOutputDataEventValue>;
}

Properties

displayId?: string

An identifier for this output.

kernelId?: string

The kernel that produced this display data.

mimeData: Record<string, JupyterMimeOutputDataEventValue>

The emitted data.