UNPKG

@replyke/core

Version:

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

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