UNPKG

megalodon

Version:

Fediverse API client for node.js and browser

9 lines (8 loc) 222 B
import { Account } from './account.js'; import { Status } from './status.js'; import { Tag } from './tag.js'; export type Results = { accounts: Array<Account>; statuses: Array<Status>; hashtags: Array<Tag>; };