@kingstinct/react-native-healthkit
Version:
React Native bindings for HealthKit
14 lines (13 loc) • 417 B
TypeScript
/**
* @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;
}