Interface HandleVotePollOptions

interface HandleVotePollOptions {
    pollId: string;
    optionIndex: number;
    socket: Socket<DefaultEventsMap, DefaultEventsMap>;
    showAlert?: ShowAlert;
    member: string;
    roomName: string;
    updateIsPollModalVisible: ((isVisible: boolean) => void);
}

Properties

pollId: string
optionIndex: number
socket: Socket<DefaultEventsMap, DefaultEventsMap>
showAlert?: ShowAlert
member: string
roomName: string
updateIsPollModalVisible: ((isVisible: boolean) => void)