UNPKG

@replyke/core

Version:

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

11 lines (10 loc) 424 B
import { Conversation } from "../../../interfaces/models/Conversation"; export interface UseFetchSpaceConversationProps { spaceId: string; } export interface UseFetchSpaceConversationValues { conversation: Conversation | null; loading: boolean; } declare function useFetchSpaceConversation({ spaceId, }: UseFetchSpaceConversationProps): UseFetchSpaceConversationValues; export default useFetchSpaceConversation;