MediaSFU Angular
    Preparing search index...

    Interface MessagesModalOptions

    interface MessagesModalOptions {
        isMessagesModalVisible: boolean;
        onMessagesClose: () => void;
        onSendMessagePress?: (options: SendMessageOptions) => Promise<void>;
        messages: Message[];
        position?: string;
        backgroundColor?: string;
        activeTabBackgroundColor?: string;
        eventType: EventType;
        member: string;
        islevel: string;
        coHostResponsibility: CoHostResponsibility[];
        coHost: string;
        startDirectMessage: boolean;
        directMessageDetails: Participant | null;
        updateStartDirectMessage: (start: boolean) => void;
        updateDirectMessageDetails: (participant: Participant | null) => void;
        showAlert?: ShowAlert;
        roomName: string;
        socket: Socket;
        chatSetting: string;
        overlayStyle?: Partial<CSSStyleDeclaration>;
        contentStyle?: Partial<CSSStyleDeclaration>;
        customTemplate?: any;
    }
    Index

    Properties

    isMessagesModalVisible: boolean
    onMessagesClose: () => void
    onSendMessagePress?: (options: SendMessageOptions) => Promise<void>
    messages: Message[]
    position?: string
    backgroundColor?: string
    activeTabBackgroundColor?: string
    eventType: EventType
    member: string
    islevel: string
    coHostResponsibility: CoHostResponsibility[]
    coHost: string
    startDirectMessage: boolean
    directMessageDetails: Participant | null
    updateStartDirectMessage: (start: boolean) => void
    updateDirectMessageDetails: (participant: Participant | null) => void
    showAlert?: ShowAlert
    roomName: string
    socket: Socket
    chatSetting: string
    overlayStyle?: Partial<CSSStyleDeclaration>
    contentStyle?: Partial<CSSStyleDeclaration>
    customTemplate?: any