From c0bf18c15331671c8933e8942e3d4cbfd1585033 Mon Sep 17 00:00:00 2001 From: Joseph Mearman Date: Sat, 9 Mar 2024 20:20:38 +0000 Subject: [PATCH] Update export statements in index.ts --- src/index.ts | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/index.ts b/src/index.ts index 3e417fa..fb4b130 100644 --- a/src/index.ts +++ b/src/index.ts @@ -4,8 +4,12 @@ export { UnicodeTeXCommandMappings, } from "./util/UnicodeTeXCommand"; export { cleanForBib } from "./util/cleanForBib"; -export * as months from "./util/convertMonth"; +export { + Locale, + MonthFormat, + convertMonth, + convertMonthToNumeric, +} from "./util/convertMonth"; export { decodeString } from "./util/decodeString"; export { encodeForBib } from "./util/encodeForBib"; export { encodeString } from "./util/encodeString"; -