Export totalDuration()
This commit is contained in:
parent
c9e71dc244
commit
14930e748e
|
|
@ -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";
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue