Interface Participant

interface Participant {
    id?: string;
    audioID: string;
    videoID: string;
    ScreenID?: string;
    ScreenOn?: boolean;
    islevel?: string;
    isAdmin?: boolean;
    isHost?: boolean;
    name: string;
    muted?: boolean;
    isBanned?: boolean;
    isSuspended?: boolean;
    useBoard?: boolean;
    breakRoom?: null | number;
    [key: string]: any;
}

Indexable

  • [key: string]: any

Properties

id?: string
audioID: string
videoID: string
ScreenID?: string
ScreenOn?: boolean
islevel?: string
isAdmin?: boolean
isHost?: boolean
name: string
muted?: boolean
isBanned?: boolean
isSuspended?: boolean
useBoard?: boolean
breakRoom?: null | number