import type { CommunityId } from "./CommunityId"; /** * Follow / subscribe to a community. */ export type FollowCommunity = { community_id: CommunityId; follow: boolean; };