Interactivity SDK - v0.3.0
    Preparing search index...

    Type Alias WatchOptions

    Options to watch to a stream.

    import { Room } from '@millicast/sdk-interactivity';

    const room = new Room({
    streamName,
    streamAccountId,
    });

    await room.watch({
    subscriberToken: 'SUBSCRIBER_TOKEN'
    });
    type WatchOptions = {
        subscriberToken?: string;
    }
    Index

    Properties

    Properties

    subscriberToken?: string

    Token to subscribe to secure streams. If you are subscribing to an unsecure stream, you can omit this param.