UNPKG

@kingstinct/react-native-healthkit

Version:
10 lines (9 loc) 256 B
import { Workouts } from '../modules'; const getMostRecentWorkout = async () => { const workouts = await Workouts.queryWorkoutSamples({ limit: 1, ascending: false, }); return workouts[0]; }; export default getMostRecentWorkout;