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