server/types/entities/notification.ts

15 lines
282 B
TypeScript
Raw Normal View History

2023-09-11 05:31:08 +02:00
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
}