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

    Interface BridgeResponseMessage

    Successful response envelope posted back to the webview.

    interface BridgeResponseMessage {
        requestId: string;
        result: unknown;
        type: "response";
    }
    Index

    Properties

    Properties

    requestId: string

    Matches the requestId from the original request.

    result: unknown

    Structured-cloneable return value from the target method.

    type: "response"

    Message discriminator.