UNPKG

@replyke/core

Version:

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

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