@acorex/core 16.20.0 → 16.20.2
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/fesm2022/acorex-core.mjs +13 -5
- package/fesm2022/acorex-core.mjs.map +1 -1
- package/index.d.ts +2 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -346,7 +346,7 @@ declare class AXConfig {
|
|
|
346
346
|
declare class AXTranslatorService {
|
|
347
347
|
load(lang: string, value: any): void;
|
|
348
348
|
use(lang: string): void;
|
|
349
|
-
get(key: string, lang?: string): string;
|
|
349
|
+
get(key: string, lang?: string, params?: Record<string, any>): string;
|
|
350
350
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXTranslatorService, never>;
|
|
351
351
|
static ɵprov: i0.ɵɵInjectableDeclaration<AXTranslatorService>;
|
|
352
352
|
}
|
|
@@ -364,7 +364,7 @@ declare class AXTranslator {
|
|
|
364
364
|
static get onChange(): Observable<any>;
|
|
365
365
|
static load(lang: string, value: any): void;
|
|
366
366
|
static use(lang: string): void;
|
|
367
|
-
static get(key: string, lang?: string): string;
|
|
367
|
+
static get(key: string, lang?: string, params?: Record<string, any>): string;
|
|
368
368
|
}
|
|
369
369
|
|
|
370
370
|
declare class AXTranslatorModule {
|