mirror of
https://github.com/Zagrios/bs-manager.git
synced 2026-07-03 14:08:25 +02:00
move maps service
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
export interface Playlist {
|
||||
playlistTitle: string,
|
||||
playlistAuthor: string,
|
||||
playlistDescription?: string,
|
||||
image: string,
|
||||
customData: unknown,
|
||||
songs: PlaylistSong[]
|
||||
}
|
||||
|
||||
export interface PlaylistSong {
|
||||
key: string,
|
||||
hash: string,
|
||||
songName: string,
|
||||
uploader?: string
|
||||
}
|
||||
Reference in New Issue
Block a user