move maps service

This commit is contained in:
MathieuG-P
2022-12-20 00:20:37 +01:00
parent bd2038cc79
commit ee95df202d
4 changed files with 17 additions and 2 deletions
@@ -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
}