@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) • 383 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.DataPowerPodUsed = void 0;
const data_boolean_1 = require("./data.boolean");
class DataPowerPodUsed extends data_boolean_1.DataBoolean {
getDisplayValue() {
return this.getValue() ? 'Yes' : 'No';
}
}
exports.DataPowerPodUsed = DataPowerPodUsed;
DataPowerPodUsed.type = 'Power Pod';