@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) • 446 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.DataGroundContactTime = void 0;
const data_number_1 = require("./data.number");
class DataGroundContactTime extends data_number_1.DataNumber {
getDisplayValue() {
return Math.round(this.getValue());
}
}
exports.DataGroundContactTime = DataGroundContactTime;
DataGroundContactTime.type = 'Ground Contact Time';
DataGroundContactTime.unit = 'ms';