Type Alias FollowRelationshipUpdate
FollowRelationshipUpdate: {
follower: {
follower_count: number | null;
following_count: number | null;
id: string;
};
following: {
follower_count: number
| null;
following_count: number | null;
id: string;
};
state: "follow_pending"
| "follow_accept"
| "follow_reject";
}
Type Declaration
follower: { follower_count: number | null; following_count: number | null; id: string }
following: { follower_count: number | null; following_count: number | null; id: string }
state: "follow_pending" | "follow_accept" | "follow_reject"