mirror of
https://github.com/versia-pub/server.git
synced 2025-12-06 16:38:19 +01:00
10 lines
228 B
TypeScript
10 lines
228 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[];
|
|
}
|