mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-03-04 07:18:50 -07:00
15 lines
318 B
TypeScript
15 lines
318 B
TypeScript
declare namespace Entity {
|
|
type Alerts = {
|
|
follow: boolean;
|
|
favourite: boolean;
|
|
mention: boolean;
|
|
reblog: boolean;
|
|
poll: boolean;
|
|
};
|
|
type PushSubscription = {
|
|
id: string;
|
|
endpoint: string;
|
|
server_key: string;
|
|
alerts: Alerts;
|
|
};
|
|
}
|