Added tags

This commit is contained in:
Torben Pi Jensen
2024-02-03 17:06:07 +01:00
parent 343126bee3
commit 993501f049
9 changed files with 36 additions and 7 deletions
+2 -1
View File
@@ -43,10 +43,11 @@ var QueuedSong = /** @class */ (function (_super) {
exports.QueuedSong = QueuedSong;
var PlayingSong = /** @class */ (function (_super) {
__extends(PlayingSong, _super);
function PlayingSong(type, title, songId, image, listener, length, position) {
function PlayingSong(type, title, songId, image, listener, length, position, tags) {
var _this = _super.call(this, type, title, songId, image, listener) || this;
_this.length = length;
_this.position = position;
_this.tags = tags;
return _this;
}
return PlayingSong;