import type { CommunityId } from "./CommunityId"; import type { PersonId } from "./PersonId"; /** * Add a moderator to a community. */ export type AddModToCommunity = { community_id: CommunityId; person_id: PersonId; added: boolean; };