import type { PersonId } from "./PersonId"; /** * Block a person. */ export type BlockPerson = { person_id: PersonId; block: boolean; };