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

    Output from code execution.

    interface ExecutionOutput {
        data?: unknown;
        ename?: string;
        evalue?: string;
        name?: string;
        text?: string;
        traceback?: string[];
        type: "stream" | "execute_result" | "display_data" | "error";
    }
    Index

    Properties

    data?: unknown

    Display data object for execute_result or display_data outputs

    ename?: string

    Exception name for error outputs

    evalue?: string

    Exception value for error outputs

    name?: string

    Stream name (stdout or stderr) for stream outputs

    text?: string

    Text content for stream outputs

    traceback?: string[]

    Exception traceback lines for error outputs

    type: "stream" | "execute_result" | "display_data" | "error"

    Type of output produced