UNPKG

@replyke/core

Version:

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

8 lines (7 loc) 250 B
export interface FetchFollowersCountByUserIdProps { userId: string; } declare function useFetchFollowersCountByUserId(): (props: FetchFollowersCountByUserIdProps) => Promise<{ count: number; }>; export default useFetchFollowersCountByUserId;