From a0bf62998ed41d0ac64d406e03845b0fdcd74263 Mon Sep 17 00:00:00 2001 From: Rene Saarsoo Date: Sun, 22 Nov 2020 22:34:46 +0200 Subject: [PATCH] Expose intensityValueToZoneType() function --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 6ff812d..348282e 100644 --- a/src/index.ts +++ b/src/index.ts @@ -7,7 +7,7 @@ export { parseCliOptions } from "./parseCliOptions"; export { Workout, Interval, Comment } from "./ast"; export { Duration } from "./Duration"; export { Intensity, ConstantIntensity, RangeIntensity, FreeIntensity } from "./Intensity"; -export { ZoneType } from "./ZoneType"; +export { ZoneType, intensityValueToZoneType } from "./ZoneType"; // utils export { totalDuration } from "./stats/totalDuration";