frontend/types/mastodon/context.ts

7 lines
130 B
TypeScript
Raw Normal View History

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