barkey/packages/megalodon/src/mastodon/entities/notification.ts
2023-09-25 01:49:57 +02:00

14 lines
283 B
TypeScript

/// <reference path="account.ts" />
/// <reference path="status.ts" />
namespace MastodonEntity {
export type Notification = {
account: Account
created_at: string
id: string
status?: Status
type: NotificationType
}
export type NotificationType = string
}