@digitaldefiance/i18n-lib 1.0.21 → 1.0.22
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/i18n-engine.d.ts +1 -1
- package/package.json +1 -1
package/dist/i18n-engine.d.ts
CHANGED
|
@@ -31,7 +31,7 @@ export declare class I18nEngine<TStringKey extends string, TLanguage extends str
|
|
|
31
31
|
/**
|
|
32
32
|
* Default template processor instance
|
|
33
33
|
*/
|
|
34
|
-
readonly t: (
|
|
34
|
+
readonly t: (str: string, language?: TLanguage, ...otherVars: Record<string, string | number>[]) => string;
|
|
35
35
|
/**
|
|
36
36
|
* Creates a new I18nEngine instance
|
|
37
37
|
* @param config The i18n configuration
|