@likeminds.community/feed-js
Version:
LikeMinds Javascript SDK for chat APIs
26 lines (25 loc) • 555 B
TypeScript
import { Attachment } from "./attachment";
export interface Comment {
id: string;
attachments: Attachment[];
commentsCount: number;
createdAt: number;
deleteReason: string;
deletedBy: string;
deletedByUuid: string;
isDeleted: boolean;
isEdited: boolean;
isLiked: boolean;
level: number;
likesCount: number;
menuItems: MenuItem[];
postId: string;
tempId: null | string;
text: string;
updatedAt: number;
uuid: string;
}
export interface MenuItem {
id: number;
title: string;
}