UNPKG

@replyke/core

Version:

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

7 lines (6 loc) 300 B
import { Conversation } from "../../../interfaces/models/Conversation"; export interface CreateDirectConversationProps { userId: string; } declare function useCreateDirectConversation(): (props: CreateDirectConversationProps) => Promise<Conversation>; export default useCreateDirectConversation;