UNPKG

@replyke/core

Version:

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

7 lines (6 loc) 342 B
import { ConnectionCountResponse } from "../../../interfaces/models/Connection"; export interface FetchConnectionsCountByUserIdParams { userId: string; } declare function useFetchConnectionsCountByUserId(): (props: FetchConnectionsCountByUserIdParams) => Promise<ConnectionCountResponse>; export default useFetchConnectionsCountByUserId;