UNPKG

@replyke/core

Version:

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

7 lines (6 loc) 241 B
import { JoinSpaceResponse } from "../../interfaces/models/Space"; export interface JoinSpaceProps { spaceId: string; } declare function useJoinSpace(): (props: JoinSpaceProps) => Promise<JoinSpaceResponse>; export default useJoinSpace;