Common stuff initial
This commit is contained in:
Vendored
+19
@@ -0,0 +1,19 @@
|
||||
"use strict";
|
||||
exports.__esModule = true;
|
||||
exports.SongType = exports.Song = void 0;
|
||||
var Song = /** @class */ (function () {
|
||||
function Song(type, title, url, image, length) {
|
||||
this.type = type;
|
||||
this.title = title;
|
||||
this.url = url;
|
||||
this.image = image;
|
||||
this.length = length;
|
||||
}
|
||||
return Song;
|
||||
}());
|
||||
exports.Song = Song;
|
||||
var SongType;
|
||||
(function (SongType) {
|
||||
SongType[SongType["YouTube"] = 0] = "YouTube";
|
||||
SongType[SongType["Spotify"] = 1] = "Spotify";
|
||||
})(SongType = exports.SongType || (exports.SongType = {}));
|
||||
Reference in New Issue
Block a user