import type { CommunityId } from "./CommunityId"; import type { PersonId } from "./PersonId"; export type ApproveCommunityPendingFollower = { community_id: CommunityId; follower_id: PersonId; approve: boolean; };