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

7 lines (6 loc) 273 B
import { LibError } from './lib.error'; import { EventInterface } from '../events/event.interface'; export declare abstract class EventLibError extends LibError { event: EventInterface | null; protected constructor(message: string, event: EventInterface | null); }