UNPKG

megalodon

Version:

Fediverse API client for node.js and browser

11 lines (10 loc) 254 B
import { Account } from './account'; import { Status } from './status'; export type Notification = { account: Account; created_at: string; id: string; status?: Status; type: NotificationType; }; export type NotificationType = string;