server/types/entities/results.ts

10 lines
228 B
TypeScript
Raw Normal View History

import type { APIAccount } from "./account";
import type { APIStatus } from "./status";
import type { APITag } from "./tag";
2023-09-11 05:31:08 +02:00
2023-09-12 22:48:10 +02:00
export interface APIResults {
accounts: APIAccount[];
statuses: APIStatus[];
hashtags: APITag[];
2023-09-11 05:46:20 +02:00
}