@zohodesk/dot
Version:
In this Library, we Provide Some Basic Components to Build Your Application
33 lines • 989 B
JavaScript
import PropTypes from 'prop-types';
export const AudioPlayer_propTypes = {
backwardStepInSec: PropTypes.string,
forwardStepInSec: PropTypes.string,
getAudioDuration: PropTypes.func,
duration: PropTypes.string,
id: PropTypes.string,
isPlay: PropTypes.bool,
needClose: PropTypes.bool,
needDownload: PropTypes.bool,
needMuteIcon: PropTypes.bool,
onAudioLoading: PropTypes.func,
onAudioSeeking: PropTypes.func,
onClose: PropTypes.func,
onDownloading: PropTypes.func,
onError: PropTypes.func,
onMuteUnmute: PropTypes.func,
onPause: PropTypes.func,
onPlay: PropTypes.func,
src: PropTypes.string,
timerFormat: PropTypes.string,
i18nKeys: PropTypes.shape({
playTitle: PropTypes.string,
pauseTitle: PropTypes.string,
downloadTitle: PropTypes.string,
closeTitle: PropTypes.string,
muteTitle: PropTypes.string,
unmuteTitle: PropTypes.string
}),
dataId: PropTypes.string,
customClass: PropTypes.string,
range: PropTypes.number
};