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 FetchFollowingCountByUserIdProps { userId: string; } declare function useFetchFollowingCountByUserId(): (props: FetchFollowingCountByUserIdProps) => Promise<{ count: number; }>; export default useFetchFollowingCountByUserId;