server/types/mastodon/context.ts

7 lines
130 B
TypeScript
Raw Normal View History

2024-04-14 12:53:21 +02:00
import type { Status } from "./status";
export type Context = {
ancestors: Array<Status>;
descendants: Array<Status>;
};