mirror of
https://github.com/versia-pub/server.git
synced 2025-12-06 08:28:19 +01:00
15 lines
282 B
TypeScript
15 lines
282 B
TypeScript
|
|
import { Account } from "./account"
|
||
|
|
import { Status } from "./status"
|
||
|
|
|
||
|
|
namespace MastodonEntity {
|
||
|
|
export type Notification = {
|
||
|
|
account: Account
|
||
|
|
created_at: string
|
||
|
|
id: string
|
||
|
|
status?: Status
|
||
|
|
type: NotificationType
|
||
|
|
}
|
||
|
|
|
||
|
|
export type NotificationType = string
|
||
|
|
}
|