import type { Community } from "./Community"; import type { CommunityReport } from "./CommunityReport"; import type { Person } from "./Person"; /** * A community report view. */ export type CommunityReportView = { community_report: CommunityReport; community: Community; creator: Person; resolver?: Person; creator_is_admin: boolean; creator_is_moderator: boolean; creator_banned: boolean; creator_ban_expires_at?: string; creator_banned_from_community: boolean; creator_community_ban_expires_at?: string; };