UNPKG

zaccl

Version:

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

12 lines (11 loc) 220 B
/** * Current state of a poll * @author Yuen Ler Chow */ declare enum ZoomPollStatus { NotStart = "NotStart", Started = "Started", Ended = "Ended", Sharing = "Sharing" } export default ZoomPollStatus;