UNPKG

@replyke/core

Version:

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

9 lines (8 loc) 253 B
export interface ReportMessageParams { conversationId: string; messageId: string; reason?: string; details?: string; } declare function useReportMessage(): (params: ReportMessageParams) => Promise<void>; export default useReportMessage;