import type { CommunityId } from "./CommunityId"; /** * Hide a community from the main view. */ export type HideCommunity = { community_id: CommunityId; hidden: boolean; reason: string; };