server/types/mastodon/context.ts
2024-04-14 00:53:21 -10:00

7 lines
130 B
TypeScript

import type { Status } from "./status";
export type Context = {
ancestors: Array<Status>;
descendants: Array<Status>;
};