UNPKG

zaccl

Version:

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

16 lines (12 loc) 336 B
import ZoomUserAnswer from './ZoomUserAnswer'; /** * List of users' answers to a Zoom poll question * @author Yuen Ler Chow */ type ZoomUsersAnswersToQuestion = { // The prompt for the question prompt: string, // List of responses to the question responses: ZoomUserAnswer[], }; export default ZoomUsersAnswersToQuestion;