mirror of
https://github.com/versia-pub/server.git
synced 2025-12-06 08:28:19 +01:00
10 lines
214 B
TypeScript
10 lines
214 B
TypeScript
import type { Account } from "./account";
|
|
import type { Status } from "./status";
|
|
import type { Tag } from "./tag";
|
|
|
|
export type Results = {
|
|
accounts: Account[];
|
|
statuses: Status[];
|
|
hashtags: Tag[];
|
|
};
|