15 lines
387 B
TypeScript
15 lines
387 B
TypeScript
import { z } from 'zod';
|
|
|
|
import { Resolve } from '../utils/types';
|
|
|
|
import { statusSchema } from './status';
|
|
|
|
/** @see {@link https://docs.joinmastodon.org/entities/Context/} */
|
|
const contextSchema = z.object({
|
|
ancestors: z.array(statusSchema),
|
|
descendants: z.array(statusSchema),
|
|
});
|
|
|
|
type Context = Resolve<z.infer<typeof contextSchema>>;
|
|
|
|
export { contextSchema, type Context };
|