mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-12-02 17:33:09 +02:00
3fd2b55406
This reverts commit 89eea5df52
.
16 lines
315 B
TypeScript
16 lines
315 B
TypeScript
/// <reference path="account.ts" />
|
|
/// <reference path="status.ts" />
|
|
|
|
namespace Entity {
|
|
export type Notification = {
|
|
account: Account
|
|
created_at: string
|
|
id: string
|
|
status?: Status
|
|
emoji?: string
|
|
type: NotificationType
|
|
target?: Account
|
|
}
|
|
|
|
export type NotificationType = string
|
|
}
|