@replyke/core
Version:
Replyke: Build interactive apps with social features like comments, votes, feeds, user lists, notifications, and more.
11 lines (10 loc) • 324 B
TypeScript
export interface FetchFollowStatusProps {
userId: string;
}
export interface FollowStatusResponse {
isFollowing: boolean;
followId?: string;
followedAt?: string;
}
declare function useFetchFollowStatus(): (props: FetchFollowStatusProps) => Promise<FollowStatusResponse>;
export default useFetchFollowStatus;