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

13 lines (12 loc) 352 B
import { DataJSONInterface } from '../data/data.json.interface'; import { Privacy } from '../privacy/privacy.class.interface'; export interface EventJSONInterface { id?: string; name: string; description: string | null; isMerge: boolean; privacy: Privacy; startDate: number; endDate: number; stats: DataJSONInterface; }