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

    Interface BridgeResponseErrorMessage

    Error response envelope posted back to the webview when a bridge call throws or is rejected.

    interface BridgeResponseErrorMessage {
        message: string;
        requestId: string;
        stack?: string;
        type: "response.error";
    }
    Index

    Properties

    message: string

    Human-readable error message.

    requestId: string

    Matches the requestId from the original request.

    stack?: string

    Optional stack trace (only included in development builds).

    type: "response.error"

    Message discriminator.