@likeminds.community/feed-js
Version:
LikeMinds Javascript SDK for chat APIs
21 lines (20 loc) • 436 B
TypeScript
import { MenuItem } from "./post";
export interface Reply {
id: string;
commentsCount: number;
communityId: number;
createdAt: number;
isEdited: boolean;
isLiked: boolean;
level: number;
likesCount: number;
menuItems: MenuItem[];
postId: string;
replies: Reply[];
tempId: string;
text: string;
updatedAt: number;
userId: string;
uuid: string;
parentComment?: Reply;
}