feat: add songs via Apple Music

This commit is contained in:
2026-09-01 12:51:39 +02:00
parent a2b93e9624
commit 3a0f8210dd
33 changed files with 513 additions and 98 deletions
+1 -1
View File
@@ -94,5 +94,5 @@ export interface PlayerSourcePlugin {
* Called when user adds another song to the playlist via this source.
* You may use the provided interface elements (search bar and popups) to e.g. ask if user wants to use a playlist, album, etc
*/
'addSongsFromThisSource': () => Promise<Song[]>;
'addSongsFromThisSource': ( cb: ( songs: Song[] ) => void ) => void;
}