UNPKG

@replyke/core

Version:

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

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