megalodon/megalodon/src/mastodon/entities/notification.ts
2022-01-02 16:28:11 +09:00

15 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
}