UNPKG

zaccl

Version:

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

16 lines (15 loc) 325 B
/** * Type of a Zoom file * @author Gabe Abrams */ declare enum ZoomFileType { VideoFile = "MP4", AudioOnlyFile = "M4A", Timeline = "TIMELINE", Transcript = "TRANSCRIPT", Chat = "CHAT", ClosedCaptions = "CC", PollingData = "CSV", RecordingSummary = "SUMMARY" } export default ZoomFileType;