getDeviceId.d.ts 249 B

1234567891011
  1. export interface DeviceIdResult {
  2. deviceId: string;
  3. }
  4. declare function getDeviceId(): Promise<DeviceIdResult>;
  5. declare namespace getDeviceId {
  6. var version: {
  7. android: string;
  8. ios: string;
  9. };
  10. }
  11. export default getDeviceId;