bigbuffet-rw/packages/pl-api/lib/entities/context.ts
marcin mikołajczak ee0232e2e6 pl-api: works on docs
Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
2024-10-29 22:26:53 +01:00

16 lines
371 B
TypeScript

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