Properly marked exported classes to fix JSDoc

This commit is contained in:
rainbow napkin 2025-09-02 07:32:51 -04:00
parent 7d31cc9e8a
commit 514b00a714
67 changed files with 23032 additions and 29404 deletions

View file

@ -27,7 +27,7 @@ const { userModel } = require('../../../schemas/user/userSchema');
/**
* Class containing playlist management logic for a single channel
*/
module.exports = class{
class playlistHandler{
/**
* Instantiates a new object to handle playlist management for a single channel
* @param {channelManager} server - Parent server object
@ -1134,4 +1134,6 @@ module.exports = class{
return loggerUtils.socketExceptionHandler(socket, err);
}
}
}
}
module.exports = playlistHandler;