From c9e71dc2443433b18688dcfb3ba33444f9f09108 Mon Sep 17 00:00:00 2001 From: Rene Saarsoo Date: Thu, 1 Oct 2020 22:41:04 +0300 Subject: [PATCH] Export types --- src/index.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/index.ts b/src/index.ts index 5b7f335..8fdf403 100644 --- a/src/index.ts +++ b/src/index.ts @@ -2,3 +2,7 @@ export { generateZwo } from "./generateZwo"; export { parse } from "./parser"; export { stats } from "./stats"; export { parseCliOptions } from "./parseCliOptions"; + +export { Workout, Interval, Comment } from "./ast"; +export { Duration } from "./Duration"; +export { Intensity, IntensityRange, FreeIntensity } from "./Intensity";