import * as v from 'valibot'; import { dateSchema } from '../utils'; /** @see {@link https://docs.joinmastodon.org/entities/Admin_DomainAllow/} */ const adminDomainAllowSchema = v.object({ id: v.string(), domain: v.string(), created_at: dateSchema, }); type AdminDomainAllow = v.InferOutput; export { adminDomainAllowSchema, type AdminDomainAllow, };