@ningboyz/types 1.5.53 → 1.5.55
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
|
@@ -46,6 +46,8 @@ export interface IDictResponseDictPara {
|
|
|
46
46
|
hideCamera: boolean;
|
|
47
47
|
/** 是否办理结果附件 */
|
|
48
48
|
processingResult: boolean;
|
|
49
|
+
/** 是否将pdf附件页面大小转换成A4 */
|
|
50
|
+
usesResizePdf: boolean;
|
|
49
51
|
}
|
|
50
52
|
|
|
51
53
|
export class TDictResponseDictPara implements IDictResponseDictPara {
|
|
@@ -86,6 +88,8 @@ export class TDictResponseDictPara implements IDictResponseDictPara {
|
|
|
86
88
|
hideCamera: boolean = false;
|
|
87
89
|
/** 是否办理结果附件 */
|
|
88
90
|
processingResult: boolean = false;
|
|
91
|
+
/** 是否将pdf附件页面大小转换成A4 */
|
|
92
|
+
usesResizePdf: boolean = false;
|
|
89
93
|
}
|
|
90
94
|
|
|
91
95
|
export interface IFormFieldObj {
|