Type Alias StreamInformation

StreamInformation: {
    streamAccountId: string;
    streamName: string;
}

Information about the stream to connect to.

Type declaration

  • streamAccountId: string

    Dolby Millicast account ID.

  • streamName: string

    Name of the stream.

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

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

const room = new Room(streamInfo);