UNPKG

@replyke/core

Version:

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

10 lines (9 loc) 258 B
interface UseFollowToggleProps { userId: string; } declare function useFollowManager({ userId }: UseFollowToggleProps): { isFollowing: boolean | null; isLoading: boolean; toggleFollow: () => Promise<void>; }; export default useFollowManager;