UNPKG

tcx-builder

Version:
12 lines (11 loc) 302 B
import { Zone } from './Zone'; import { HeartRateValue } from '../HeartRate'; export declare class CustomHeartRateZone extends Zone { Low: HeartRateValue; High: HeartRateValue; constructor(options: { low: HeartRateValue; high: HeartRateValue; }); toXml(): string; }