onesignal-web-sdk
Version:
Web push notifications from OneSignal.
17 lines (16 loc) • 469 B
text/typescript
export enum IntegrationKind {
/**
* An secure HTTPS site using its own origin for subscribing.
*/
Secure = "Secure",
/**
* A secure HTTPS site using a proxy subscription origin (e.g. subdomain.os.tc or
* subdomain.onesignal.com).
*/
SecureProxy = "Secure Proxy",
/**
* An insecure HTTP site using a proxy subscription origin (e.g. subdomain.os.tc or
* subdomain.onesignal.com).
*/
InsecureProxy = "Insecure Proxy",
}