@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) • 499 B
TypeScript
import { CreatorInterface } from './creator.interface';
import { CreatorJSONInterface } from './creator.json.interface';
import { DeviceInterface } from '../activities/devices/device.interface';
export declare class Creator implements CreatorInterface {
name: string;
swInfo?: string;
hwInfo?: string;
serialNumber?: string;
devices: DeviceInterface[];
constructor(name: string, swInfo?: string, hwInfo?: string, serialNumber?: string);
toJSON(): CreatorJSONInterface;
}