@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
12 lines (11 loc) • 362 B
TypeScript
import { DeviceJsonInterface } from '../activities/devices/device.json.interface';
export interface CreatorJSONInterface {
name: string;
productId?: string | null;
manufacturer?: string | null;
serialNumber?: string | null;
swInfo?: string | null;
hwInfo?: string | null;
isRecognized?: boolean;
devices: DeviceJsonInterface[];
}