mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-10-14 21:34:50 +00:00
16 lines
278 B
TypeScript
16 lines
278 B
TypeScript
namespace MastodonEntity {
|
|
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
|
|
}
|
|
}
|