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

    Result of connecting to an existing runtime including success status and optional error.

    interface RuntimeConnectionResult {
        error?: string;
        runtime?: RuntimeInfo;
        success: boolean;
    }
    Index

    Properties

    error?: string

    Error message if operation failed.

    runtime?: RuntimeInfo

    Connected runtime information if successful.

    success: boolean

    Whether the runtime connection operation succeeded.