UNPKG

@cutls/megalodon

Version:

Mastodon, Pleroma, Misskey API client for node.js and browser

14 lines (13 loc) 359 B
import { Account } from './account' export type Report = { id: string action_taken: boolean action_taken_at: string | null status_ids: Array<string> | null rule_ids: Array<string> | null category: Category | null comment: string | null forwarded: boolean | null target_account?: Account | null } export type Category = 'spam' | 'violation' | 'other'