UNPKG

zaccl

Version:

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

11 lines (10 loc) 207 B
/** * Type of config (based on type of credentials) * @author Gabe Abrams */ declare enum ZoomAPIConfigType { JWT = "JWT", Token = "Token", OAuth = "OAuth" } export default ZoomAPIConfigType;