mirror of
https://github.com/versia-pub/frontend.git
synced 2025-12-06 16:38:20 +01:00
10 lines
229 B
TypeScript
10 lines
229 B
TypeScript
|
|
import type { Account } from "./account";
|
||
|
|
import type { Status } from "./status";
|
||
|
|
import type { Tag } from "./tag";
|
||
|
|
|
||
|
|
export type Results = {
|
||
|
|
accounts: Array<Account>;
|
||
|
|
statuses: Array<Status>;
|
||
|
|
hashtags: Array<Tag>;
|
||
|
|
};
|