UNPKG

@replyke/core

Version:

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

8 lines (7 loc) 295 B
import { ConnectionsResponse } from "../../../interfaces/models/Connection"; interface FetchConnectionsParams { page?: number; limit?: number; } declare function useFetchConnections(): (props?: FetchConnectionsParams) => Promise<ConnectionsResponse>; export default useFetchConnections;