import type { CommunityId } from "./CommunityId"; /** * Create a report for a community. */ export type CreateCommunityReport = { community_id: CommunityId; reason: string; };