MediaSFU Angular
    Preparing search index...

    Interface PollModalOptions

    interface PollModalOptions {
        isPollModalVisible: boolean;
        onClose: () => void;
        position?: string;
        backgroundColor?: string;
        member: string;
        islevel: string;
        polls: Poll[];
        poll: Poll | null;
        socket: Socket;
        roomName: string;
        showAlert?: ShowAlert;
        updateIsPollModalVisible: (isVisible: boolean) => void;
        handleCreatePoll: HandleCreatePollType;
        handleEndPoll: HandleEndPollType;
        handleVotePoll: HandleVotePollType;
        overlayStyle?: Partial<CSSStyleDeclaration>;
        contentStyle?: Partial<CSSStyleDeclaration>;
        customTemplate?: any;
    }
    Index

    Properties

    isPollModalVisible: boolean
    onClose: () => void
    position?: string
    backgroundColor?: string
    member: string
    islevel: string
    polls: Poll[]
    poll: Poll | null
    socket: Socket
    roomName: string
    showAlert?: ShowAlert
    updateIsPollModalVisible: (isVisible: boolean) => void
    handleCreatePoll: HandleCreatePollType
    handleEndPoll: HandleEndPollType
    handleVotePoll: HandleVotePollType
    overlayStyle?: Partial<CSSStyleDeclaration>
    contentStyle?: Partial<CSSStyleDeclaration>
    customTemplate?: any