UNPKG

@kingstinct/react-native-healthkit

Version:
14 lines (13 loc) 417 B
/** * @see {@link https://developer.apple.com/documentation/healthkit/hkdevice Apple Docs } */ export interface Device { readonly name?: string; readonly firmwareVersion?: string; readonly hardwareVersion?: string; readonly localIdentifier?: string; readonly manufacturer?: string; readonly model?: string; readonly softwareVersion?: string; readonly udiDeviceIdentifier?: string; }