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

11 lines (10 loc) 274 B
import { DataJSONInterface } from '../data/data.json.interface'; export interface LapJSONInterface { lapId: number; startDate: number; endDate: number; startIndex: number | null; endIndex: number | null; type: string; stats: DataJSONInterface; }