added type for parent-commen-id into comment

This commit is contained in:
Hollgy 2024-03-11 15:16:55 +01:00
parent 45c3b87243
commit 368d7c9c65

View file

@ -20,6 +20,7 @@ export interface NewComment {
content: string;
user_token: string;
parent_post_id: number;
parent_comment_id?: number;
}
export interface Comment extends NewComment {