mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-12-04 19:43:08 +02:00
16 lines
259 B
TypeScript
16 lines
259 B
TypeScript
namespace Entity {
|
|
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;
|
|
};
|
|
}
|