vknplayer
Version:
console audio player for listen music from vk.com and on-line radio
29 lines (18 loc) • 399 B
JavaScript
var dataViews = require('../');
/**
*
* @constructor
*/
var ServiceYandexMusic = function() {};
goog.inherits(ServiceYandexMusic, dataViews.Abstract);
/**
* @return {Promise.<Array>}
*/
ServiceYandexMusic.prototype.getChildren = function() {};
/**
* @inheritDoc
*/
ServiceYandexMusic.prototype.toString = function() {
return 'Yandex Music';
};
module.exports = ServiceYandexMusic;