From 2294b438dca1bc9248f9b636cee7db9961b1f16b Mon Sep 17 00:00:00 2001 From: Patrik Oldsberg Date: Tue, 12 Sep 2023 11:23:07 +0200 Subject: [PATCH] core-plugin-api: export new translation APIs Signed-off-by: Patrik Oldsberg --- packages/core-plugin-api/src/translation/index.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/packages/core-plugin-api/src/translation/index.ts b/packages/core-plugin-api/src/translation/index.ts index 6c97fb772e..a03bf4b1f7 100644 --- a/packages/core-plugin-api/src/translation/index.ts +++ b/packages/core-plugin-api/src/translation/index.ts @@ -14,6 +14,16 @@ * limitations under the License. */ +export { + type TranslationMessages, + type TranslationMessagesOptions, + createTranslationMessages, +} from './TranslationMessages'; +export { + type TranslationResource, + type TranslationResourceOptions, + createTranslationResource, +} from './TranslationResource'; export { type TranslationRef, type TranslationRefOptions,