UNPKG

megalodon

Version:

Fediverse API client for node.js and browser

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