Place the actual push subscription data into a push property on the subscription so that other properties can be added to it.
4 lines
78 B
TypeScript
4 lines
78 B
TypeScript
export interface Subscription {
|
|
type: "push",
|
|
push: PushSubscriptionJSON,
|
|
}
|