MediaSFU Angular
    Preparing search index...

    Interface CoHostModalOptions

    interface CoHostModalOptions {
        isCoHostModalVisible: boolean;
        currentCohost?: string;
        participants: Participant[];
        coHostResponsibility: CoHostResponsibility[];
        position?: string;
        backgroundColor?: string;
        roomName: string;
        showAlert?: ShowAlert;
        updateCoHostResponsibility: (
            coHostResponsibility: CoHostResponsibility[],
        ) => void;
        updateCoHost: (coHost: string) => void;
        updateIsCoHostModalVisible: (isCoHostModalVisible: boolean) => void;
        socket: Socket;
        onCoHostClose: () => void;
        onModifyEventSettings?: (settings: ModifyCoHostSettingsOptions) => void;
        overlayStyle?: Partial<CSSStyleDeclaration>;
        contentStyle?: Partial<CSSStyleDeclaration>;
        customTemplate?: any;
    }
    Index

    Properties

    isCoHostModalVisible: boolean
    currentCohost?: string
    participants: Participant[]
    coHostResponsibility: CoHostResponsibility[]
    position?: string
    backgroundColor?: string
    roomName: string
    showAlert?: ShowAlert
    updateCoHostResponsibility: (
        coHostResponsibility: CoHostResponsibility[],
    ) => void
    updateCoHost: (coHost: string) => void
    updateIsCoHostModalVisible: (isCoHostModalVisible: boolean) => void
    socket: Socket
    onCoHostClose: () => void
    onModifyEventSettings?: (settings: ModifyCoHostSettingsOptions) => void
    overlayStyle?: Partial<CSSStyleDeclaration>
    contentStyle?: Partial<CSSStyleDeclaration>
    customTemplate?: any