Datalayer VS Code Extension - v0.0.6
    Preparing search index...

    Interface OutputItem

    A single output item with mime type and data.

    interface OutputItem {
        data: Uint8Array;
        mime: string;
    }
    Index

    Properties

    Properties

    data: Uint8Array

    The data of this output item.

    mime: string

    The mime type of the output. Examples: text/plain, application/json, text/html, etc.

    Special mime types:

    • application/x.notebook.stream.stdout: stdout stream
    • application/x.notebook.stream.stderr: stderr stream
    • application/vnd.code.notebook.error: error output