import type { CommunityId } from "./CommunityId"; /** * Remove a community (only doable by moderators). */ export type RemoveCommunity = { community_id: CommunityId; removed: boolean; reason: string; };