import type { Community } from "./Community"; import type { CommunityFollowerState } from "./CommunityFollowerState"; import type { Person } from "./Person"; export type PendingFollowerView = { person: Person; community: Community; is_new_instance: boolean; follow_state?: CommunityFollowerState; };