Interface JupyterInputReplyOutputEvent

Emitted when an input request was answered.

interface JupyterInputReplyOutputEvent {
    inputId: string;
    kernelId?: string;
    value?: string;
}

Properties

inputId: string

The request that was answered.

Ids repeat across kernels, so this identifies a request only together with the kernelId.

kernelId?: string

The kernel that asked for the value.

value?: string

The value that was given.

Absent when the request hid the typed value, in which case the value travels to the kernel and is never stored.