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.
- package/dist/esm/package.json +1 -1
- package/index.d.ts +10 -0
- package/index.v4.d.ts +10 -0
- package/package.json +1 -1
- package/typescript/options.d.ts +1 -1
package/dist/esm/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"type":"module","version":"23.7.
|
|
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
package/typescript/options.d.ts
CHANGED
|
@@ -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 {
|