import type { CommunityFollowerState } from "./CommunityFollowerState"; import type { MultiCommunity } from "./MultiCommunity"; import type { Person } from "./Person"; export type MultiCommunityView = { multi: MultiCommunity; follow_state?: CommunityFollowerState; owner: Person; };