UNPKG

@replyke/core

Version:

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

10 lines (9 loc) 284 B
import { Comment } from "../../interfaces/models/Comment"; declare function useFetchComment(): ({ commentId, withParent, }: { commentId: string; withParent?: boolean; }) => Promise<{ comment: Comment; parentComment: Comment | null; }>; export default useFetchComment;