barkey/packages/megalodon/src/friendica/entities/notification.ts
2023-09-24 01:44:53 +02:00

14 lines
284 B
TypeScript

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