Update JSDOC
parent
0855e88550
commit
bd967d5a8c
|
@ -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[];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue