UNPKG
spotifydl-x
Version:
latest (0.3.5)
0.3.5
0.3.0
Spotify downloader for node
github.com/alensaito1/spotifydl-core
alensaito1/spotifydl-core
spotifydl-x
/
dist
/
lib
/
details
/
Playlist.d.ts
8 lines
(7 loc)
•
238 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
{
IPlaylist
}
from
'../../typings'
;
export
default
class
Playlist
implements
IPlaylist
{
name
:
string
;
total_tracks
:
number
;
tracks
:
string
[];
constructor
(
name
?:
string
,
total_tracks
?:
number
,
tracks
?:
string
[]
); }