server/types/entities/results.ts
2024-04-06 19:30:49 -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[];
}