UNPKG

@kingstinct/react-native-healthkit

Version:
14 lines (13 loc) 380 B
import type { WorkoutProxy } from '../specs/WorkoutProxy.nitro'; /** * @returns the most recent workout sample. */ export declare function useWorkoutById(uuid: string, options?: { readonly energyUnit?: string; readonly distanceUnit?: string; }): { workout: WorkoutProxy | undefined; isLoading: boolean; error: Error | null; }; export default useWorkoutById;