UNPKG

capacitor-udid

Version:

Plugin to retrieve a persistent UDID across app reinstalls on iOS and Android

8 lines (7 loc) 223 B
import { WebPlugin } from '@capacitor/core'; import type { UdidPlugin } from './definitions'; export declare class UdidWeb extends WebPlugin implements UdidPlugin { getUdid(): Promise<{ value: string; }>; }