server/types/entities/results.ts

10 lines
205 B
TypeScript
Raw Normal View History

2023-09-11 05:31:08 +02:00
import { Account } from "./account";
import { Status } from "./status";
import { Tag } from "./tag";
export type Results = {
accounts: Array<Account>;
statuses: Array<Status>;
hashtags: Array<Tag>;
};