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

    Represents an image context variable. Can be either:

    • Pre-processed: Contains base64 data (from clipboard paste)
    • Path-based: Contains only wsRelativePath, data is resolved on-demand (from file drop)
    interface ImageContextVariable {
        data?: string;
        mimeType?: string;
        name?: string;
        wsRelativePath?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    data?: string

    Base64-encoded image data. Optional for path-based references that are resolved on-demand.

    mimeType?: string

    MIME type of the image. Optional for path-based references that are resolved on-demand.

    name?: string
    wsRelativePath?: string