Changed to esdoc.

This commit is contained in:
2022-04-17 21:13:12 -05:00
parent 3b4849a602
commit 2dc3bd1cd6
5 changed files with 2500 additions and 364 deletions

View File

@@ -58,25 +58,25 @@ export default class PlayListSong {
*
* @returns {string} representing the name of the song to be displayed.
*/
getDisplayName = function () {
getDisplayName() {
return this._displayName;
};
}
/**
*
* @returns {string} representing the author of the song.
*/
getAuthor = function () {
getAuthor() {
return this._getAuthor;
};
}
/**
*
* @returns {string} representing the url at which the file for this song can be found.
*/
getUrl = function () {
getUrl() {
return this._url;
};
}
/**
*