mdz-enum 1.2.89 → 1.2.90
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/dist/config/index.d.ts +2 -1
- package/dist/config/index.js +3 -0
- package/package.json +1 -1
package/dist/config/index.d.ts
CHANGED
|
@@ -77,7 +77,8 @@ export declare const ParametroEtiquetaProduto: {
|
|
|
77
77
|
};
|
|
78
78
|
export declare const ModeloPimaco: {
|
|
79
79
|
M6187: string;
|
|
80
|
-
|
|
80
|
+
A4351: string;
|
|
81
|
+
description(val: string): "enum not found" | "6187" | "A4351";
|
|
81
82
|
};
|
|
82
83
|
export declare const TipoImpressao: {
|
|
83
84
|
Arquivo: string;
|
package/dist/config/index.js
CHANGED
|
@@ -223,10 +223,13 @@ exports.ParametroEtiquetaProduto = {
|
|
|
223
223
|
};
|
|
224
224
|
exports.ModeloPimaco = {
|
|
225
225
|
M6187: '0',
|
|
226
|
+
A4351: '1',
|
|
226
227
|
description(val) {
|
|
227
228
|
switch (val) {
|
|
228
229
|
case this.M6187:
|
|
229
230
|
return '6187';
|
|
231
|
+
case this.A4351:
|
|
232
|
+
return 'A4351';
|
|
230
233
|
default:
|
|
231
234
|
return 'enum not found';
|
|
232
235
|
}
|