Hiyve Components - v1.0.0
    Preparing search index...

    Interface RoomState

    Room state containing room info and user role.

    interface RoomState {
        isInRoom: boolean;
        isNoVideo: boolean;
        isOwner: boolean;
        room: RoomInfo | null;
    }
    Index

    Properties

    isInRoom: boolean

    Whether the local user is currently in a room

    isNoVideo: boolean

    Whether this is a no-video (offline/signaling-only) room connection

    isOwner: boolean

    Whether the local user is the room owner/host

    room: RoomInfo | null

    Room information, null if not in a room