ngx-redi-core 0.0.12 → 0.0.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/package.json
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { NgModule } from '@angular/core';
|
|
2
2
|
import { CommonModule } from '@angular/common';
|
|
3
|
+
import { secure } from './model/secure-factory.model';
|
|
3
4
|
|
|
4
5
|
|
|
5
6
|
|
|
@@ -9,7 +10,18 @@ import { CommonModule } from '@angular/common';
|
|
|
9
10
|
CommonModule
|
|
10
11
|
],
|
|
11
12
|
exports:[
|
|
12
|
-
|
|
13
13
|
]
|
|
14
14
|
})
|
|
15
15
|
export class SecureModule { }
|
|
16
|
+
|
|
17
|
+
export function some() {
|
|
18
|
+
/**
|
|
19
|
+
* Función para la fabrica de decoradores de clases y propiedades
|
|
20
|
+
* @param target Target del decorador
|
|
21
|
+
* @param propertyKey Nombre de la propiedad
|
|
22
|
+
* @returns Function de devolución para la fabrica de decoradores
|
|
23
|
+
*/
|
|
24
|
+
return function (target: any, propertyKey?: string) {
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
|