mdz-enum 1.1.74 → 1.1.75
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/general/index.d.ts +3 -3
- package/dist/general/index.js +6 -6
- package/package.json +1 -1
package/dist/general/index.d.ts
CHANGED
|
@@ -55,7 +55,7 @@ export declare const Uf: {
|
|
|
55
55
|
shortDescription(val: string): "RO" | "AC" | "AM" | "RR" | "PA" | "AP" | "TO" | "MA" | "RN" | "PB" | "PE" | "AL" | "SE" | "BA" | "MG" | "ES" | "RJ" | "SP" | "PR" | "SC" | "RS" | "MS" | "MT" | "GO" | "DF" | undefined;
|
|
56
56
|
};
|
|
57
57
|
export declare const ProporcaoImagem: {
|
|
58
|
-
'
|
|
59
|
-
'
|
|
60
|
-
description(val: string): "enum not found" | "
|
|
58
|
+
'1/1': string;
|
|
59
|
+
'9/16': string;
|
|
60
|
+
description(val: string): "enum not found" | "1/1" | "9/16";
|
|
61
61
|
};
|
package/dist/general/index.js
CHANGED
|
@@ -204,14 +204,14 @@ exports.Uf = {
|
|
|
204
204
|
},
|
|
205
205
|
};
|
|
206
206
|
exports.ProporcaoImagem = {
|
|
207
|
-
'
|
|
208
|
-
'
|
|
207
|
+
'1/1': '0',
|
|
208
|
+
'9/16': '1',
|
|
209
209
|
description(val) {
|
|
210
210
|
switch (val) {
|
|
211
|
-
case this['
|
|
212
|
-
return '
|
|
213
|
-
case this['
|
|
214
|
-
return '
|
|
211
|
+
case this['1/1']:
|
|
212
|
+
return '1/1';
|
|
213
|
+
case this['9/16']:
|
|
214
|
+
return '9/16';
|
|
215
215
|
default:
|
|
216
216
|
return 'enum not found';
|
|
217
217
|
}
|