UNPKG

me-vp

Version:

change the default style of the video player

11 lines (10 loc) 280 B
class VideoPlayerAbstract { constructor(src, container, width, skipTime, theme) { this.src = src; this.container = container; this.width = width; this.skipTime = skipTime; this.theme = theme; } } export default VideoPlayerAbstract;