@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
16 lines (15 loc) • 601 B
TypeScript
import { CreatorJSONInterface } from '../creators/creator.json.interface';
import { IntensityZonesJSONInterface } from '../intensity-zones/intensity-zones.json.interface';
import { LapJSONInterface } from '../laps/lap.json.interface';
import { DataJSONInterface } from '../data/data.json.interface';
export interface ActivityJSONInterface {
id?: string;
startDate: number;
endDate: number;
type: string;
stats: DataJSONInterface;
laps: LapJSONInterface[];
creator: CreatorJSONInterface;
intensityZones: IntensityZonesJSONInterface[];
events: DataJSONInterface[];
}