mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-11-12 03:12:17 +00:00
14 lines
284 B
TypeScript
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
|
|
}
|