UNPKG

@replyke/core

Version:

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

8 lines (7 loc) 272 B
import { Comment } from "../../interfaces/models/Comment"; declare function useUpdateComment(): ({ commentId, content, metadata, }: { commentId: string; content?: string; metadata?: Record<string, any>; }) => Promise<Comment>; export default useUpdateComment;