UNPKG

@replyke/core

Version:

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

9 lines (8 loc) 224 B
import { Comment } from "../../interfaces/models/Comment"; declare function useGroupReplies({ commentId }: { commentId: string; }): { replies: Comment[]; newReplies: Comment[]; }; export default useGroupReplies;