From 14930e748e91bc2804934b4338ff6d9569700c05 Mon Sep 17 00:00:00 2001 From: Rene Saarsoo Date: Thu, 1 Oct 2020 23:32:29 +0300 Subject: [PATCH] Export totalDuration() --- src/index.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/index.ts b/src/index.ts index 8fdf403..fdac085 100644 --- a/src/index.ts +++ b/src/index.ts @@ -3,6 +3,10 @@ export { parse } from "./parser"; export { stats } from "./stats"; export { parseCliOptions } from "./parseCliOptions"; +// types export { Workout, Interval, Comment } from "./ast"; export { Duration } from "./Duration"; export { Intensity, IntensityRange, FreeIntensity } from "./Intensity"; + +// stats utils +export { totalDuration } from "./stats/totalDuration";