Update jsdocs for expanded library items

This commit is contained in:
advplyr
2024-01-16 16:31:16 -06:00
parent b51853b3df
commit 7b0fa48e2e
3 changed files with 78 additions and 0 deletions

View File

@@ -1,5 +1,12 @@
const { DataTypes, Model } = require('sequelize')
/**
* @typedef PodcastExpandedProperties
* @property {import('./PodcastEpisode')[]} podcastEpisodes
*
* @typedef {Podcast & PodcastExpandedProperties} PodcastExpanded
*/
class Podcast extends Model {
constructor(values, options) {
super(values, options)