UNPKG

@replyke/core

Version:

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

7 lines (6 loc) 247 B
import { LeaveSpaceResponse } from "../../interfaces/models/Space"; export interface LeaveSpaceProps { spaceId: string; } declare function useLeaveSpace(): (props: LeaveSpaceProps) => Promise<LeaveSpaceResponse>; export default useLeaveSpace;