firefish/packages/megalodon/src/entities/push_subscription.ts
ThatOneCalculator 2e4c30e572
chore: 🎨 format
2023-07-13 18:32:23 -07:00

17 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;
};
}