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

16 lines
301 B
TypeScript

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