Member Junction
    Preparing search index...

    Per-kind payload carried on a RealtimeSurfaceTab.

    interface RealtimeSurfaceTabData {
        Content?: TemplateRef<unknown>;
        Plugin?: BaseRealtimeChannelClient<object>;
    }
    Index

    Properties

    Properties

    Content?: TemplateRef<unknown>

    For channel tabs: a TEMPLATE-based pane body. Backward-compatible alternative to Plugin for hosts that render a bespoke surface without a channel plugin. When BOTH are absent the pane renders the built-in "coming online…" placeholder.

    Plugin?: BaseRealtimeChannelClient<object>

    For channel tabs: the channel PLUGIN whose surface component the pane creates dynamically (and binds back to the plugin) — the registry-driven path every real channel uses. Takes precedence over Content.