zaccl
Version:
The Zoom App Complete Connection Library, a project that handles everything required to build a zoom-integrated app.
17 lines • 459 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
* Types of polls
* @author Yuen Ler Chow
*/
var ZoomPollType;
(function (ZoomPollType) {
// Normal poll
ZoomPollType["Poll"] = "Poll";
// Advanced poll
ZoomPollType["AdvancedPoll"] = "AdvancedPoll";
// Quiz
ZoomPollType["Quiz"] = "Quiz";
})(ZoomPollType || (ZoomPollType = {}));
exports.default = ZoomPollType;
//# sourceMappingURL=ZoomPollType.js.map