From ad01362fc3cfeb7e4fe4fb4fe13c49ab4623e227 Mon Sep 17 00:00:00 2001 From: Jordan Eldredge Date: Sun, 24 May 2020 13:37:16 -0700 Subject: [PATCH] Document that the playlist events are not yet released --- packages/webamp/docs/usage.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/webamp/docs/usage.md b/packages/webamp/docs/usage.md index de9ea04e..e8b283c1 100644 --- a/packages/webamp/docs/usage.md +++ b/packages/webamp/docs/usage.md @@ -166,17 +166,20 @@ const options = { }, // Optional. Provide a way to extend the behavior of the button ADD URL. + // **Since** 1.4.1-beta03 (unreleased) handleAddUrlEvent: async () => { // Return an optional array of `Track` objects or null. }, // Optional. Provide a way to extend the behavior of the playlist button LOAD LIST. + // **Since** 1.4.1-beta03 (unreleased) handleLoadListEvent: async () => { // Return an optional array of `Track` objects or null. }, // Optional. Provide a way to extend the behavior of the playlist button SAVE LIST. // Where tracks: Track[] + // **Since** 1.4.1-beta03 (unreleased) handleSaveListEvent: (tracks) => {} }; const webamp = new Webamp(options);