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

    Type Alias StreamInformation

    Information about the stream to connect to.

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

    const streamInfo: StreamInformation = {
    streamName: 'STREAM_NAME',
    streamAccountId: 'ACCOUNT_ID',
    };

    const room = new Room(streamInfo);
    type StreamInformation = {
        streamAccountId: string;
        streamName: string;
    }
    Index

    Properties

    streamAccountId: string

    Dolby Millicast account ID.

    streamName: string

    Name of the stream.