Type Alias CreateComment

CreateComment: {
    content: string;
    language_id?: LanguageId;
    parent_id?: CommentId;
    post_id: PostId;
}

Create a comment.

Type declaration