Update JSDOC

pull/73/head
MillenniumEarl 2021-03-02 21:16:07 +01:00
parent 0855e88550
commit bd967d5a8c
1 changed files with 7 additions and 2 deletions

View File

@ -1,5 +1,8 @@
"use strict"; "use strict";
// Modules from files
import Post from "./post";
/** /**
* Class containing the data of the user currently connected to the F95Zone platform. * Class containing the data of the user currently connected to the F95Zone platform.
*/ */
@ -17,15 +20,17 @@ export default class UserData {
*/ */
watched: string[] = []; watched: string[] = [];
/** /**
* List of bookmarked thread URLs. * List of bookmarked posts.
*/ */
bookmarks: string[] = []; bookmarks: Post[] = [];
/** /**
* List of alerts. * List of alerts.
* @todo
*/ */
alerts: string[] = []; alerts: string[] = [];
/** /**
* List of conversations. * List of conversations.
* @todo
*/ */
conversations: string[]; conversations: string[];
} }