capacitor-detect-mobile-services
Version:
Detect android HMS or GMS service, ios or web.
14 lines (13 loc) • 391 B
TypeScript
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;
}>;
}