Add: Edit Count
This commit is contained in:
@@ -31,6 +31,8 @@ export type Post = {
|
||||
name: string,
|
||||
category: Category,
|
||||
content: string,
|
||||
edited: boolean,
|
||||
editCount: number,
|
||||
postDate: Date,
|
||||
rating: Rating,
|
||||
metrics: PostMetrics | null,
|
||||
@@ -40,6 +42,8 @@ export type Comment = {
|
||||
id: number,
|
||||
author: User | null,
|
||||
content: string,
|
||||
edited: boolean,
|
||||
editCount: number,
|
||||
commentDate: Date,
|
||||
rating: Rating,
|
||||
parentCommentId: number,
|
||||
|
||||
Reference in New Issue
Block a user