UNPKG

@replyke/core

Version:

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

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