16 lines
417 B
JavaScript
16 lines
417 B
JavaScript
/**
|
|
* Enum for query types
|
|
* @readonly
|
|
*/
|
|
const QueryType = {
|
|
SPOTIFY_PLAYLIST: 'spotify_playlist',
|
|
SPOTIFY_ALBUM: 'spotify_album',
|
|
SPOTIFY_SONG: 'spotify_song',
|
|
YOUTUBE_PLAYLIST: 'youtube_playlist',
|
|
YOUTUBE_VIDEO: 'youtube_video',
|
|
SOUNDCLOUD_TRACK: 'soundcloud_track',
|
|
SOUNDCLOUD_PLAYLIST: 'soundcloud_playlist',
|
|
YOUTUBE_SEARCH: 'youtube_search',
|
|
}
|
|
|
|
module.exports = { QueryType }; |