megalodon/megalodon/src/pleroma/entities/push_subscription.ts
2023-01-05 00:53:12 +09:00

17 lines
277 B
TypeScript

namespace PleromaEntity {
export type Alerts = {
follow: boolean
favourite: boolean
mention: boolean
reblog: boolean
poll: boolean
}
export type PushSubscription = {
id: string
endpoint: string
server_key: string
alerts: Alerts
}
}