zaccl
Version:
The Zoom App Complete Connection Library, a project that handles everything required to build a zoom-integrated app.
17 lines (15 loc) • 302 B
text/typescript
/**
* Current state of a poll
* @author Yuen Ler Chow
*/
enum ZoomPollStatus {
// Poll has not started
NotStart = 'NotStart',
// Poll has started
Started = 'Started',
// Poll has ended
Ended = 'Ended',
// Host is sharing results
Sharing = 'Sharing'
}
export default ZoomPollStatus;