UNPKG

@replyke/core

Version:

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

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