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) 201 B
import { IDClassInterface } from './id.class.interface'; export declare abstract class IDClass implements IDClassInterface { private id?; getID(): string | null; setID(id: string): this; }