UNPKG

react-native-voximplant

Version:

VoxImplant Mobile SDK for embedding voice and video communication into React Native apps.

25 lines (22 loc) 694 B
/* * Copyright (c) 2011-2020, Zingaya, Inc. All rights reserved. */ /** * Audio file events listener to be notified about audio file events * @memberof Voximplant.Hardware * @enum {string} * @type {{Started: string, Stopped: string}} */ const AudioFileEventTypes = { /** * Invoked when the audio file playing is started. * Handler function receives {@link EventHandlers.AudioFileStarted} object as an argument. */ Started: 'Started', /** * Invoked when the audio file playing is stopped. * Handler function receives {@link EventHandlers.AudioFileStopped} object as an argument. */ Stopped: 'Stopped' }; export default AudioFileEventTypes;