owltide/shared/types/account.d.ts
Hornwitser abdcc83eb9 Refactor subscription format
Place the actual push subscription data into a push property on the
subscription so that other properties can be added to it.
2025-03-07 12:37:47 +01:00

4 lines
78 B
TypeScript

export interface Subscription {
type: "push",
push: PushSubscriptionJSON,
}