Sharkey/packages/megalodon/src/pleroma/entities/push_subscription.ts

17 lines
277 B
TypeScript
Raw Normal View History

2023-09-24 01:44:53 +02:00
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
}
}