lunify.js
Version:
A basic api wrapper for the spotify api covering the oauth routes.
18 lines • 861 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.CurrentlyPlayingType = exports.PlayerContextType = void 0;
var PlayerContextType;
(function (PlayerContextType) {
PlayerContextType["Artist"] = "artist";
PlayerContextType["Playlist"] = "playlist";
PlayerContextType["Album"] = "album";
PlayerContextType["Show"] = "show";
})(PlayerContextType || (exports.PlayerContextType = PlayerContextType = {}));
var CurrentlyPlayingType;
(function (CurrentlyPlayingType) {
CurrentlyPlayingType["Track"] = "track";
CurrentlyPlayingType["Episode"] = "episode";
// when not even spotify knows what you're playing, you music taste might suck
CurrentlyPlayingType["Unknown"] = "unknown";
})(CurrentlyPlayingType || (exports.CurrentlyPlayingType = CurrentlyPlayingType = {}));
//# sourceMappingURL=player.js.map