UNPKG

capacitor-vpn-detector

Version:

Capacitor plugin to detect VPN connections on Android and iOS.

7 lines 242 B
import { WebPlugin } from '@capacitor/core'; export class VpnDetectorWeb extends WebPlugin { async isVpnActive() { throw this.unimplemented('VPN detection is not available on web platform'); } } //# sourceMappingURL=web.js.map