server/types/mastodon/context.ts

7 lines
120 B
TypeScript

import type { Status } from "./status";
export type Context = {
ancestors: Status[];
descendants: Status[];
};