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

    Result of a runtime creation attempt including success status and optional error.

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

    Properties

    error?: string

    Error message if operation failed.

    runtime?: RuntimeInfo

    Created runtime information if successful.

    success: boolean

    Whether the runtime creation operation succeeded.