From 08526684c46df33247f8b90451ca7c08550d999e Mon Sep 17 00:00:00 2001 From: Bluefox Date: Sat, 28 Sep 2024 18:09:01 +0800 Subject: [PATCH] Fixed error with I18n export (#592) --- README.md | 2 +- src/index.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 055ad14..837d929 100644 --- a/README.md +++ b/README.md @@ -164,7 +164,7 @@ If you find errors in the definitions, e.g., function calls that should be allow Placeholder for the next version (at the beginning of the line): ### **WORK IN PROGRESS** --> -### 3.2.0 (2024-09-28) +### **WORK IN PROGRESS** - (@foxriver76) updated types - (@GermanBluefox) Added i18n module diff --git a/src/index.ts b/src/index.ts index d029194..c5e0acc 100644 --- a/src/index.ts +++ b/src/index.ts @@ -7,7 +7,7 @@ import '@iobroker/types'; // Export utility methods to be used in adapters export { commonTools } from './controllerTools.js'; export * from './utils.js'; -export * as I18n from './utils.js'; +export * as I18n from './i18n.js'; /** * Returns the absolute path of the data directory for the current host. On linux, this is usually `/opt/iobroker/iobroker-data`.