@replyke/core
Version:
Replyke: Build interactive apps with social features like comments, votes, feeds, user lists, notifications, and more.
9 lines (8 loc) • 452 B
TypeScript
import { PendingConnection } from "../../../interfaces/models/Connection";
import { PaginatedResponse } from "../../../interfaces/PaginatedResponse";
export interface FetchReceivedPendingConnectionsParams {
page?: number;
limit?: number;
}
declare function useFetchReceivedPendingConnections(): (props?: FetchReceivedPendingConnectionsParams) => Promise<PaginatedResponse<PendingConnection>>;
export default useFetchReceivedPendingConnections;