@companion-surface/base
    Preparing search index...

    Interface SurfacePluginRemoteEvents<TInfo>

    interface SurfacePluginRemoteEvents<TInfo> {
        connectionsForgotten: [connectionIds: string[]];
        connectionsFound: [connectionInfos: DiscoveredRemoteSurfaceInfo[]];
        surfacesConnected: [surfaceInfos: DetectionSurfaceInfo<TInfo>[]];
    }

    Type Parameters

    • TInfo
    Index

    Properties

    connectionsForgotten: [connectionIds: string[]]

    Fired when previously detected surfaces are forgotten This is the opposite of connectionsFound, to forget any connections which are no longer available

    connectionsFound: [connectionInfos: DiscoveredRemoteSurfaceInfo[]]

    Fired when surface discovery detects new surfaces This is used as suggestions in the ui of remote surfaces the user can setup

    surfacesConnected: [surfaceInfos: DetectionSurfaceInfo<TInfo>[]]