UNPKG

@vonage/video

Version:

Package to interact with the Vonage Video API (Not OpenTok Compatible)

16 lines (14 loc) 350 B
/** * Enum representing different archive modes. */ declare enum ArchiveMode { /** * Archive mode set to 'manual', where archives are started and stopped manually. */ MANUAL = "manual", /** * Archive mode set to 'always', where archives are continuously recorded. */ ALWAYS = "always" } export { ArchiveMode };