@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) • 517 B
TypeScript
import { DataString } from './data.string';
export declare const TrainingStressScoreMethod: {
readonly POWER: "POWER";
readonly HR: "HR";
readonly PACE: "PACE";
readonly SWIM_PACE: "SWIM_PACE";
readonly MET: "MET";
readonly IMPORTED: "IMPORTED";
};
export type TrainingStressScoreMethodType = (typeof TrainingStressScoreMethod)[keyof typeof TrainingStressScoreMethod];
export declare class DataTrainingStressScoreMethod extends DataString {
static type: string;
static unit: string;
}