mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-04-28 09:36:56 +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
|
|
}
|