import type { CommunityId } from "./CommunityId"; /** * Purges a community from the database. This will delete all content attached to that community. */ export type PurgeCommunity = { community_id: CommunityId; reason: string; };