Interface PollUpdatedOptions

interface PollUpdatedOptions {
    data: PollUpdatedData;
    polls: Poll[];
    poll: Poll;
    member: string;
    islevel: string;
    showAlert?: ShowAlert;
    updatePolls: ((polls: Poll[]) => void);
    updatePoll: ((poll: Poll) => void);
    updateIsPollModalVisible: ((isVisible: boolean) => void);
}

Properties

polls: Poll[]
poll: Poll
member: string
islevel: string
showAlert?: ShowAlert
updatePolls: ((polls: Poll[]) => void)
updatePoll: ((poll: Poll) => void)
updateIsPollModalVisible: ((isVisible: boolean) => void)