UNPKG

zaccl

Version:

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

10 lines (9 loc) 213 B
/** * The start time of a Zoom meeting and its meeting UUID. * @author Yuen Ler Chow */ type ZoomMeetingIdAndStartTime = { start_time: string; uuid: string; }; export default ZoomMeetingIdAndStartTime;