softdinlibreriajs 1.0.2 → 1.0.3
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,4 +1,4 @@
|
|
|
1
|
-
class EnumActualizacionWEB {
|
|
1
|
+
export class EnumActualizacionWEB {
|
|
2
2
|
static REGISTRADO = 1;
|
|
3
3
|
static NO_REGISTRADO = 3;
|
|
4
4
|
static ESPERANDO_GUARDAR = 2;
|
|
@@ -32,7 +32,7 @@ class EnumActualizacionWEB {
|
|
|
32
32
|
}
|
|
33
33
|
}
|
|
34
34
|
|
|
35
|
-
module.exports = EnumActualizacionWEB;
|
|
35
|
+
// module.exports = EnumActualizacionWEB;
|
|
36
36
|
|
|
37
37
|
// Ejemplo de uso
|
|
38
38
|
// console.log(EnumActualizacionWEB.getById(1)); // Imprime el objeto de la enumeración con ID 1
|