Type alias MultiRoom

MultiRoom: BaseSystemType & {
    currentAudioTitle: string | null;
    currentPlayingTime: number | null;
    currentPlaylistIndex: number | null;
    currentSongIndex: number | null;
    currentState: MultiRoomState | null;
    currentVolume: number | null;
    playList: MultiRoomPlayList[] | null;
}

Type declaration

  • currentAudioTitle: string | null

    The current audio title

  • currentPlayingTime: number | null

    The current playing time as 0-...

  • currentPlaylistIndex: number | null

    The current play list indes

  • currentSongIndex: number | null

    The current song index

  • currentState: MultiRoomState | null

    The current state

  • currentVolume: number | null

    The current volume as 0-100 %

  • playList: MultiRoomPlayList[] | null

    The current play list

Generated using TypeDoc