server/types/entities-2/results.ts
2024-04-14 00:53:21 -10:00

10 lines
237 B
TypeScript

import type { APIAccount } from "./account";
import type { APIStatus } from "./status";
import type { APITag } from "./tag";
export interface APIResults {
accounts: APIAccount[];
statuses: APIStatus[];
hashtags: APITag[];
}