Chartbreaker
    Preparing search index...

    Interface PushSubscriptionOptions

    The PushSubscriptionOptions interface of the Push API represents the options associated with a push subscription. Available only in secure contexts.

    MDN Reference

    interface PushSubscriptionOptions {
        applicationServerKey: ArrayBuffer | null;
        userVisibleOnly: boolean;
    }
    Index

    Properties

    applicationServerKey: ArrayBuffer | null

    The applicationServerKey read-only property of the PushSubscriptionOptions interface contains the public key used by the push server.

    MDN Reference

    userVisibleOnly: boolean

    The userVisibleOnly read-only property of the PushSubscriptionOptions interface indicates if the returned push subscription will only be used for messages whose effect is made visible to the user.

    MDN Reference