plugNmeet JS SDK - v2.2.2
    Preparing search index...

    Type Alias NativeBridgeMsg

    NativeBridgeMsg: Message<"plugnmeet.NativeBridgeMsg"> & {
        action: NativeBridgeActions;
        payload:
            | {
                value: NativeBridgeInitializePublisher;
                case: "initializeNativePublisher";
            }
            | { value: NativeBridgeMediaSource; case: "mediaSource" }
            | { value: NativeBridgeHeartbeat; case: "heartbeat" }
            | { value: NativeBridgeMediaStatus; case: "mediaStatus" }
            | { value: NativeBridgeTrackState; case: "trackState" }
            | { value: NativeBridgeMediaMuted; case: "mediaMuted" }
            | { value: NativeBridgeError; case: "error" }
            | { case: undefined; value?: undefined };
    }

    Wire format for communication between the webview and the native host. Messages are encoded as proto3 JSON (not binary).

    Type Declaration

    from message plugnmeet.NativeBridgeMsg