UNPKG

mediamonkeyserver

Version:
17 lines (11 loc) 371 B
/*jslint node: true, esversion: 6 */ "use strict"; const VideoItem = require('./object.item.videoItem'); const _UPNP_CLASS = VideoItem.UPNP_CLASS + ".musicVideoClip"; class MusicVideoClip extends VideoItem { get name() { return MusicVideoClip.UPNP_CLASS; } static get UPNP_CLASS() { return _UPNP_CLASS; } } module.exports = MusicVideoClip;