♻️ refactor some code

This commit is contained in:
2025-02-05 18:57:58 +08:00
parent a2e80b9a91
commit b4ef5a4b51
21 changed files with 501 additions and 217 deletions

View File

@@ -23,14 +23,14 @@ interface CommentContent {
avatar: string;
nickname: string;
level?: number;
images: string[];
images: string;
is_liked: boolean;
}
export interface ReplyCommentParams {
topic_id: string,
content: string,
images: string[],
images: string,
author: string,
reply_id: number,
reply_user: string,