import type { PersonId } from "./PersonId"; /** * Adds an admin to a site. */ export type AddAdmin = { person_id: PersonId; added: boolean; };