More stuff
This commit is contained in:
Vendored
+3
-3
@@ -22,12 +22,11 @@ var SongType;
|
||||
SongType[SongType["Spotify"] = 1] = "Spotify";
|
||||
})(SongType = exports.SongType || (exports.SongType = {}));
|
||||
var Song = /** @class */ (function () {
|
||||
function Song(type, title, songId, image, length) {
|
||||
function Song(type, title, songId, image) {
|
||||
this.type = type;
|
||||
this.title = title;
|
||||
this.songId = songId;
|
||||
this.image = image;
|
||||
this.length = length;
|
||||
}
|
||||
return Song;
|
||||
}());
|
||||
@@ -35,7 +34,8 @@ exports.Song = Song;
|
||||
var PlayingSong = /** @class */ (function (_super) {
|
||||
__extends(PlayingSong, _super);
|
||||
function PlayingSong(type, title, songId, image, length, position) {
|
||||
var _this = _super.call(this, type, title, songId, image, length) || this;
|
||||
var _this = _super.call(this, type, title, songId, image) || this;
|
||||
_this.length = length;
|
||||
_this.position = position;
|
||||
return _this;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user