UNPKG

@replyke/core

Version:

Replyke: Build interactive apps with social features like comments, votes, feeds, user lists, notifications, and more.

14 lines (13 loc) 296 B
import { Comment } from "./models/Comment"; export type EntityCommentsTree = { [id: string]: { comment: Comment; replies: { [id: string]: Comment & { new: boolean; }; }; new: boolean; failed?: boolean; }; };