@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
16 lines (15 loc) • 645 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;
productId?: string;
manufacturer?: string;
swInfo?: string;
hwInfo?: string;
serialNumber?: string;
isRecognized?: boolean;
devices: DeviceInterface[];
constructor(name: string, productId?: string, manufacturer?: string, swInfo?: string, hwInfo?: string, serialNumber?: string, isRecognized?: boolean);
toJSON(): CreatorJSONInterface;
}