From d8a2064a8f898c6fbbfccd67f5e6164ee5fa1ce3 Mon Sep 17 00:00:00 2001 From: Peter Fajemisin Date: Tue, 18 Feb 2025 16:11:21 +0000 Subject: [PATCH] OLH-2437 - Ensure we use the latest version of the library whenever we deploy --- index.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/index.ts b/index.ts index 88cba7f..d0e6f34 100644 --- a/index.ts +++ b/index.ts @@ -1,3 +1,6 @@ import getTranslations from './src/get-translations' +import {Translation} from './interfaces/translations.interface' +import {TranslationsObject} from './interfaces/translations.interface' -export { getTranslations } \ No newline at end of file +export { getTranslations } +export type { Translation, TranslationsObject } \ No newline at end of file