fix comments

This commit is contained in:
Ashish Dhama 2023-03-22 15:52:47 +05:30
parent b42c05f226
commit fa32301c1e
2 changed files with 2 additions and 1 deletions

View file

@ -37,7 +37,7 @@ export default class ChannelInfoModel extends Model implements ChannelInfoInterf
/** pinned_post_count : The number of post pinned in this channel */
@field('pinned_post_count') pinnedPostCount!: number;
/** pinned_post_count : The number of files in this channel */
/** files_count : The number of files in this channel */
@field('files_count') filesCount!: number;
/** purpose: The intention behind this channel */

View file

@ -26,6 +26,7 @@ declare class ChannelInfoModel extends Model {
/** pinned_post_count : The number of post pinned in this channel */
pinnedPostCount: number;
/** files_count : The number of files in this channel */
filesCount: number;
/** purpose: The intention behind this channel */