From effa11ad7524812b32faacb883ec236c83506145 Mon Sep 17 00:00:00 2001 From: Rene Saarsoo Date: Fri, 25 Dec 2020 15:43:04 +0200 Subject: [PATCH] Expose SourceLocation data type --- src/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/index.ts b/src/index.ts index d967923..29a8742 100644 --- a/src/index.ts +++ b/src/index.ts @@ -9,6 +9,7 @@ export { Duration } from "./Duration"; export { Intensity, ConstantIntensity, RangeIntensity, FreeIntensity } from "./Intensity"; export { ZoneType, intensityValueToZoneType } from "./ZoneType"; export { ParseError } from "./parser/ParseError"; +export { SourceLocation } from "./parser/tokenizer"; // utils export { totalDuration } from "./stats/totalDuration";