@stemy/ngx-utils 12.2.12 → 12.2.13
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/bundles/stemy-ngx-utils.umd.js +13 -0
- package/bundles/stemy-ngx-utils.umd.js.map +1 -1
- package/esm2015/ngx-utils/common-types.js +1 -1
- package/esm2015/ngx-utils/services/config.service.js +14 -1
- package/fesm2015/stemy-ngx-utils.js +13 -0
- package/fesm2015/stemy-ngx-utils.js.map +1 -1
- package/ngx-utils/common-types.d.ts +2 -0
- package/ngx-utils/services/config.service.d.ts +1 -0
- package/package.json +1 -1
- package/stemy-ngx-utils.metadata.json +1 -1
|
@@ -274,6 +274,8 @@ export declare class IConfiguration {
|
|
|
274
274
|
export interface IConfigService {
|
|
275
275
|
config: IConfiguration;
|
|
276
276
|
readonly load: () => Promise<IConfiguration>;
|
|
277
|
+
readonly rootElement: any;
|
|
278
|
+
cloneRootElem(): any;
|
|
277
279
|
prepareUrl(url: string, ending: string): string;
|
|
278
280
|
getConfigValue(key: string): any;
|
|
279
281
|
getQueryParameter(name: string, url?: string): string;
|
|
@@ -20,6 +20,7 @@ export declare class ConfigService implements IConfigService {
|
|
|
20
20
|
protected initService(): void;
|
|
21
21
|
protected loadJson(): Promise<IConfiguration>;
|
|
22
22
|
protected prepareConfig(config: IConfiguration): Promise<IConfiguration>;
|
|
23
|
+
cloneRootElem(): any;
|
|
23
24
|
prepareUrl(url: string, ending: string): string;
|
|
24
25
|
getConfigValue(key: string): any;
|
|
25
26
|
getQueryParameter(name: string, url?: string): string;
|