Details about the environment that the user is currently in, such as the operating system.

interface DesktopEnvironment {
    clipboardText?: string;
    highlight?: HighlightEnvironment;
    ocrScreenContents?: string;
    platform: Platform;
    screenshotBase64?: string;
    screenshotPath?: string;
}

Properties

clipboardText?: string
ocrScreenContents?: string

The scanned OCR contents of the user's entire screen.

platform: Platform
screenshotBase64?: string
screenshotPath?: string