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

8 lines (7 loc) 284 B
import { EventInterface } from '../../event.interface'; import { EventExporter } from './exporter.interface'; export declare class EventExporterJSON implements EventExporter { fileType: string; fileExtension: string; getAsString(event: EventInterface): Promise<string>; }