mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-12-03 22:23:09 +02:00
15 lines
292 B
TypeScript
15 lines
292 B
TypeScript
/// <reference path="account.ts" />
|
|
/// <reference path="status.ts" />
|
|
|
|
namespace Entity {
|
|
export type Notification = {
|
|
account: Account;
|
|
created_at: string;
|
|
id: string;
|
|
status?: Status;
|
|
reaction?: Reaction;
|
|
type: NotificationType;
|
|
};
|
|
|
|
export type NotificationType = string;
|
|
}
|