17 lines
279 B
TypeScript
17 lines
279 B
TypeScript
|
|
namespace FriendicaEntity {
|
||
|
|
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
|
||
|
|
}
|
||
|
|
}
|