@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) • 441 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.DataRecoveryTime = void 0;
const data_duration_1 = require("./data.duration");
class DataRecoveryTime extends data_duration_1.DataDuration {
getDisplayValue(showDays = true, showSeconds = false) {
return super.getDisplayValue(showDays, showSeconds);
}
}
exports.DataRecoveryTime = DataRecoveryTime;
DataRecoveryTime.type = 'Recovery Time';