UNPKG

@replyke/core

Version:

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

7 lines (6 loc) 280 B
import { Conversation } from "../../../interfaces/models/Conversation"; export interface FetchConversationProps { conversationId: string; } declare function useFetchConversation(): (props: FetchConversationProps) => Promise<Conversation>; export default useFetchConversation;