server/types/mastodon/context.ts

7 lines
120 B
TypeScript
Raw Normal View History

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