@esfaenza/extensions 15.2.7 → 15.2.8
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/esm2020/lib/services/extensions.exports.service.mjs +3 -3
- package/fesm2015/esfaenza-extensions.mjs +2 -2
- package/fesm2015/esfaenza-extensions.mjs.map +1 -1
- package/fesm2020/esfaenza-extensions.mjs +2 -2
- package/fesm2020/esfaenza-extensions.mjs.map +1 -1
- package/lib/services/extensions.exports.service.d.ts +2 -2
- package/package.json +1 -1
|
@@ -11,11 +11,11 @@ import * as i0 from "@angular/core";
|
|
|
11
11
|
*
|
|
12
12
|
* @param {Type<LocalizationService>} loc Tipo ereditato dal LocalizationService che può essere creato a runtime sotto contesto della DI di Angular
|
|
13
13
|
*/
|
|
14
|
-
export declare function ExportLocalization(loc: Type<LocalizationService>):
|
|
14
|
+
export declare function ExportLocalization(loc: Type<LocalizationService>): <T extends new (...args: any[]) => {}>(constructor: T) => {
|
|
15
15
|
new (...args: any[]): {
|
|
16
16
|
__loc__: Type<LocalizationService>;
|
|
17
17
|
};
|
|
18
|
-
};
|
|
18
|
+
} & T;
|
|
19
19
|
/**
|
|
20
20
|
* Decoratore di esportazione utilizzabile su una proprietà singola.
|
|
21
21
|
* Verranno generate 3 proprietà che gestiranno l'esportazione: (prop, prop_csvvis, prop_csvhdr).
|