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) 366 B
import ZoomAPIConfig from '../../types/ZoomAPIConfig'; /** * Get a current Zoom access token * @author Gabe Abrams * @param zoomAPIConfig the original config for the Zoom API * @returns access token that's currently valid */ declare const getCurrentOAuthAccessToken: (zoomAPIConfig: ZoomAPIConfig) => Promise<string>; export default getCurrentOAuthAccessToken;