UNPKG

@replyke/core

Version:

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

7 lines (6 loc) 224 B
import { Comment } from "../../interfaces/models/Comment"; declare function useUpdateComment(): ({ commentId, content }: { commentId: string; content: string; }) => Promise<Comment>; export default useUpdateComment;