Skip to content

Latest commit

 

History

History
17 lines (16 loc) · 424 Bytes

getDailyFlightsClimbedSamples().md

File metadata and controls

17 lines (16 loc) · 424 Bytes
let options = {
  startDate: (new Date(2016,4,27)).toISOString(), // required
  endDate: (new Date()).toISOString(), // optional; default now
  ascending: false,	// optional; default false
  limit:10, // optional; default no limit
};
AppleHealthKit.getDailyFlightsClimbedSamples(options, (err: Object, results: Array<Object>) => {
  if (err) {
    return;
  }
  console.log(results)
});