import type { CommunityFollowerState } from "./CommunityFollowerState"; import type { MultiCommunityId } from "./MultiCommunityId"; import type { PersonId } from "./PersonId"; export type MultiCommunityFollow = { multi_community_id: MultiCommunityId; person_id: PersonId; follow_state: CommunityFollowerState; };