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

25 lines (24 loc) 810 B
import { EventInterface } from '../../../event.interface'; export declare class EventImporterSuuntoJSON { static getFromJSONString(jsonString: string): Promise<EventInterface>; private static hasFusedLocData; private static setIntensityZones; private static getHRSamplesFromIBIData; private static setStreamsForActivity; private static getSettings; private static getStats; } export declare const SuuntoSettingsMapper: { dataType: string; getValue: (settings: any) => any; }[]; export declare const SuuntoIntensityZonesMapper: { dataType: string; sampleField: string; convertSampleValue: (value: number) => number; }[]; export declare const SuuntoSampleMapper: { dataType: string; sampleField: string; convertSampleValue(value: number): number; }[];