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

22 lines (21 loc) 619 B
import { DeviceInterface } from './device.interface'; import { DeviceJsonInterface } from './device.json.interface'; export declare class Device implements DeviceInterface { type: string; name?: string; index?: number; batteryStatus?: string; batteryVoltage?: number; manufacturer?: string; serialNumber?: string; product?: number; swInfo?: string; hwInfo?: string; antDeviceNumber?: number; antTransmissionType?: number; antNetwork?: string; sourceType?: string; cumOperatingTime?: number; constructor(type: string); toJSON(): DeviceJsonInterface; }