UNPKG

zaccl

Version:

The Zoom App Complete Connection Library, a project that handles everything required to build a zoom-integrated app.

15 lines (13 loc) 216 B
/** * Types of polls * @author Yuen Ler Chow */ enum ZoomPollType { // Normal poll Poll = 'Poll', // Advanced poll AdvancedPoll = 'AdvancedPoll', // Quiz Quiz = 'Quiz', } export default ZoomPollType;