UNPKG

@sports-alliance/sports-lib

Version:

A Library to for importing / exporting and processing GPX, TCX, FIT and JSON files from services such as Strava, Movescount, Garmin, Polar etc

15 lines (14 loc) 461 B
import { DataDuration } from './data.duration'; export declare class DataPace extends DataDuration { static type: string; static unit: string; getDisplayValue(): string; getDisplayUnit(): string; getValue(formatForDataType?: string): number; } export declare class DataPaceMinutesPerMile extends DataPace { static type: string; static displayType: string; static unit: string; getValue(formatForDataType?: string): number; }