@replyke/core
Version:
Replyke: Build interactive apps with social features like comments, votes, feeds, user lists, notifications, and more.
7 lines (6 loc) • 310 B
TypeScript
import { ConnectionStatusResponse } from "../../../interfaces/models/Connection";
export interface FetchConnectionStatusProps {
userId: string;
}
declare function useFetchConnectionStatus(): (props: FetchConnectionStatusProps) => Promise<ConnectionStatusResponse>;
export default useFetchConnectionStatus;