mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-10-14 21:34:50 +00:00
14 lines
283 B
TypeScript
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
|
|
}
|