hlyc-web-pack 3.5.22 → 3.5.23
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.
|
@@ -116,7 +116,7 @@ export interface FormCallType {
|
|
|
116
116
|
formSubmit: () => Promise<AnyObjectType>;
|
|
117
117
|
formReset: (fields?: string[]) => void;
|
|
118
118
|
}
|
|
119
|
-
interface
|
|
119
|
+
export interface GenerateFormPropType {
|
|
120
120
|
/** 组件类名 */
|
|
121
121
|
className?: string;
|
|
122
122
|
/** 渲染的表单元素 */
|
|
@@ -130,5 +130,5 @@ interface GenerateFormProp {
|
|
|
130
130
|
/** 动态渲染操作按钮或其他元素 */
|
|
131
131
|
render?: () => React.ReactElement;
|
|
132
132
|
}
|
|
133
|
-
declare const _default: React.MemoExoticComponent<React.ForwardRefExoticComponent<
|
|
133
|
+
declare const _default: React.MemoExoticComponent<React.ForwardRefExoticComponent<GenerateFormPropType & React.RefAttributes<unknown>>>;
|
|
134
134
|
export default _default;
|