import type { CommunityId } from "./CommunityId"; /** * Block a community. */ export type BlockCommunity = { community_id: CommunityId; block: boolean; };