UNPKG

capacitor-detect-mobile-services

Version:
14 lines (13 loc) 391 B
import { WebPlugin } from '@capacitor/core'; import type { DetectMobileServicesPlugin } from './definitions'; export declare class DetectMobileServicesWeb extends WebPlugin implements DetectMobileServicesPlugin { GetMediaService(): Promise<{ value: string; }>; HasHMS(): Promise<{ value: boolean; }>; HasGMS(): Promise<{ value: boolean; }>; }