UNPKG

react-native-health-symptoms

Version:

A React Native package to interact with Apple HealthKit, including symptoms

46 lines (36 loc) 795 B
# getEnergyConsumedSamples A quantity sample type that measures the amount of energy consumed. Permission required: - `AppleHealthKit.Constants.Permissions.EnergyConsumed` Example input options: ```javascript let options = { startDate: new Date(2021, 0, 0).toISOString(), // required endDate: new Date().toISOString(), // optional; default now } ``` Call the method: ```javascript AppleHealthKit.getEnergyConsumedSamples( (options: HealthInputOptions), (err: Object, results: HealthValue) => { if (err) { return } console.log(results) }, ) ``` Example output: ```json [ { "endDate": "2021-04-01T22:00:00.000+0300", "startDate": "2021-04-01T22:00:00.000+0300", "value": 204.5, "metadata": { "HKWasUserEntered": true, } } ] ```