mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2024-12-15 13:25:44 +01:00
17 lines
277 B
TypeScript
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
|
||
|
}
|
||
|
}
|