Theia API Documentation v1.65.0
    Preparing search index...

    Notebook cell output represents a result of executing a cell. It is a container type for multiple output items where contained items represent the same result but use different MIME types.

    Implements

    Index

    Constructors

    Properties

    Constructors

    Properties

    The output items of this output. Each item must represent the same result. Note that repeated MIME types per output is invalid and that the editor will just pick one of them.

    new vscode.NotebookCellOutput([
    vscode.NotebookCellOutputItem.text('Hello', 'text/plain'),
    vscode.NotebookCellOutputItem.text('<i>Hello</i>', 'text/html'),
    vscode.NotebookCellOutputItem.text('_Hello_', 'text/markdown'),
    vscode.NotebookCellOutputItem.text('Hey', 'text/plain'), // INVALID: repeated type, editor will pick just one
    ])
    metadata?: { [key: string]: any }

    eslint-disable-next-line @typescript-eslint/no-explicit-any

    outputId: string