Export totalDuration()

This commit is contained in:
Rene Saarsoo 2020-10-01 23:32:29 +03:00
parent c9e71dc244
commit 14930e748e
1 changed files with 4 additions and 0 deletions

View File

@ -3,6 +3,10 @@ export { parse } from "./parser";
export { stats } from "./stats"; export { stats } from "./stats";
export { parseCliOptions } from "./parseCliOptions"; export { parseCliOptions } from "./parseCliOptions";
// types
export { Workout, Interval, Comment } from "./ast"; export { Workout, Interval, Comment } from "./ast";
export { Duration } from "./Duration"; export { Duration } from "./Duration";
export { Intensity, IntensityRange, FreeIntensity } from "./Intensity"; export { Intensity, IntensityRange, FreeIntensity } from "./Intensity";
// stats utils
export { totalDuration } from "./stats/totalDuration";