i18next 23.7.8 → 23.7.10

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.
@@ -1 +1 @@
1
- {"type":"module","version":"23.7.8"}
1
+ {"type":"module","version":"23.7.10"}
package/index.d.ts CHANGED
@@ -490,6 +490,16 @@ export interface i18n extends CustomInstanceExtenstions {
490
490
  */
491
491
  isInitialized: boolean;
492
492
 
493
+ /**
494
+ * Store was initialized
495
+ */
496
+ initializedStoreOnce: boolean;
497
+
498
+ /**
499
+ * Language was initialized
500
+ */
501
+ initializedLanguageOnce: boolean;
502
+
493
503
  /**
494
504
  * Emit event
495
505
  */
package/index.v4.d.ts CHANGED
@@ -490,6 +490,16 @@ export interface i18n extends CustomInstanceExtenstions {
490
490
  */
491
491
  isInitialized: boolean;
492
492
 
493
+ /**
494
+ * Store was initialized
495
+ */
496
+ initializedStoreOnce: boolean;
497
+
498
+ /**
499
+ * Language was initialized
500
+ */
501
+ initializedLanguageOnce: boolean;
502
+
493
503
  /**
494
504
  * Emit event
495
505
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "i18next",
3
- "version": "23.7.8",
3
+ "version": "23.7.10",
4
4
  "description": "i18next internationalization framework",
5
5
  "main": "./dist/cjs/i18next.js",
6
6
  "module": "./dist/esm/i18next.js",
@@ -138,7 +138,7 @@ export type FormatFunction = (
138
138
  value: any,
139
139
  format?: string,
140
140
  lng?: string,
141
- options?: InterpolationOptions & $Dictionary,
141
+ options?: InterpolationOptions & $Dictionary<any>,
142
142
  ) => string;
143
143
 
144
144
  export interface InterpolationOptions {