Expose intensityValueToZoneType() function

This commit is contained in:
Rene Saarsoo 2020-11-22 22:34:46 +02:00
parent fb1eba6db0
commit a0bf62998e
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ export { parseCliOptions } from "./parseCliOptions";
export { Workout, Interval, Comment } from "./ast"; export { Workout, Interval, Comment } from "./ast";
export { Duration } from "./Duration"; export { Duration } from "./Duration";
export { Intensity, ConstantIntensity, RangeIntensity, FreeIntensity } from "./Intensity"; export { Intensity, ConstantIntensity, RangeIntensity, FreeIntensity } from "./Intensity";
export { ZoneType } from "./ZoneType"; export { ZoneType, intensityValueToZoneType } from "./ZoneType";
// utils // utils
export { totalDuration } from "./stats/totalDuration"; export { totalDuration } from "./stats/totalDuration";