import * as v from 'valibot'; import { statusSchema } from './status'; /** @see {@link https://docs.joinmastodon.org/entities/Context/} */ const contextSchema = v.object({ ancestors: v.array(statusSchema), descendants: v.array(statusSchema), }); type Context = v.InferOutput; export { contextSchema, type Context };