UNPKG

@kingstinct/react-native-healthkit

Version:
15 lines (11 loc) 260 B
import { Workouts } from '../modules' const getWorkoutById = async (uuid: string) => { const workouts = await Workouts.queryWorkoutSamples({ limit: 1, filter: { uuids: [uuid], }, }) return workouts[0] } export default getWorkoutById