microboard-temp 0.1.21 → 0.1.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/browser.js +601 -388
- package/dist/cjs/index.js +589 -295
- package/dist/cjs/node.js +597 -303
- package/dist/esm/browser.js +601 -388
- package/dist/esm/index.js +589 -295
- package/dist/esm/node.js +597 -303
- package/dist/types/api/initDefaultI18N.d.ts +11 -0
- package/dist/types/api/initI18N.d.ts +6 -11
- package/dist/types/index.d.ts +1 -0
- package/package.json +1 -1
- package/dist/types/api/initI18NBrowser.d.ts +0 -2
|
@@ -1,11 +1,6 @@
|
|
|
1
|
-
import i18n from "i18next";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
ru: {
|
|
8
|
-
default: {};
|
|
9
|
-
};
|
|
10
|
-
};
|
|
11
|
-
export declare function initI18N(isNode?: boolean): typeof i18n;
|
|
1
|
+
import type { i18n as I18nType } from "i18next";
|
|
2
|
+
/**
|
|
3
|
+
* Registers a pre-configured i18next instance on the global Settings.
|
|
4
|
+
* @param i18nInstance - An initialized i18next instance, already configured with plugins and options.
|
|
5
|
+
*/
|
|
6
|
+
export declare function initI18N(i18nInstance: I18nType): I18nType;
|
package/dist/types/index.d.ts
CHANGED
package/package.json
CHANGED